From 5ca4bfa68ea009309a151037fdbc2b84e24aef9c Mon Sep 17 00:00:00 2001 From: Leopere Date: Fri, 1 Jun 2018 13:32:52 -0400 Subject: [PATCH] Install latest source for spee.ch into a src dir The idea here is when the container runs it will check the /app/ directory for anything and only copy things that aren't there already. I might utilize rsync for this process as it'd apply more reliable magic than I want to code or maintain. --- www.spee.ch/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www.spee.ch/Dockerfile b/www.spee.ch/Dockerfile index 340df06..4f820e6 100644 --- a/www.spee.ch/Dockerfile +++ b/www.spee.ch/Dockerfile @@ -10,7 +10,7 @@ RUN npm update && \ apk update && apk --no-cache add git && \ adduser speech -h /app/ -s /bin/ash -D && \ chown -Rv speech /app && \ - git clone https://github.com/lbryio/www.spee.ch.git /src/spee.ch/ + git clone https://github.com/lbryio/www.spee.ch.git /usr/local/src/www.spee.ch/ EXPOSE 3000