From e5df0c1347343dd94acefaa94c37413106ce000f Mon Sep 17 00:00:00 2001 From: chamunks Date: Sat, 2 Jun 2018 18:57:55 -0400 Subject: [PATCH] Get dependencies prepared and I need a copy of the siteConfig.json --- www.spee.ch/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/www.spee.ch/Dockerfile b/www.spee.ch/Dockerfile index 8a98bf0..e0fe79c 100644 --- a/www.spee.ch/Dockerfile +++ b/www.spee.ch/Dockerfile @@ -10,7 +10,9 @@ RUN npm update && \ apk update && apk --no-cache add git curl wget && \ 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/ + 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 ## Install container support files RUN curl -s https://raw.githubusercontent.com/chamunks/docker-support/master/install | /bin/sh && \