diff --git a/www.spee.ch/Dockerfile b/www.spee.ch/Dockerfile index e0fe79c..96fd516 100644 --- a/www.spee.ch/Dockerfile +++ b/www.spee.ch/Dockerfile @@ -6,13 +6,13 @@ FROM node:8-alpine MAINTAINER chamunks [at] gmail [dot] com ## Install base packages and clone repo to src directory. -RUN npm update && \ - apk update && apk --no-cache add git curl wget && \ +RUN apk update && apk --no-cache add git curl wget python build-base && \ + npm update && npm i npm@latest -g && \ adduser speech -h /app/ -s /bin/ash -D && \ chown -Rv speech /app && \ git clone https://github.com/lbryio/www.spee.ch.git /usr/local/src/www.spee.ch/ && \ cd /usr/local/src/www.spee.ch/ && \ - npm install && cat /usr/local/src/www.spee.ch/config/siteConfig.json + npm install ## Install container support files RUN curl -s https://raw.githubusercontent.com/chamunks/docker-support/master/install | /bin/sh && \