From 2171cbc10458b8057e7e30f000a5c8255515c0c1 Mon Sep 17 00:00:00 2001 From: Leopere Date: Sat, 2 Jun 2018 20:06:44 -0400 Subject: [PATCH] Realized there was a defaults file in cli/defaults --- www.spee.ch/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 && \