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.
This commit is contained in:
Leopere 2018-06-01 13:32:52 -04:00
parent c8e213b9d5
commit 5ca4bfa68e

View file

@ -10,7 +10,7 @@ RUN npm update && \
apk update && apk --no-cache add git && \ apk update && apk --no-cache add git && \
adduser speech -h /app/ -s /bin/ash -D && \ adduser speech -h /app/ -s /bin/ash -D && \
chown -Rv speech /app && \ 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 EXPOSE 3000