Realized there was a defaults file in cli/defaults

This commit is contained in:
Leopere 2018-06-02 20:06:44 -04:00
parent b292182967
commit 2171cbc104

View file

@ -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 && \