Realized there was a defaults file in cli/defaults
This commit is contained in:
parent
b292182967
commit
2171cbc104
1 changed files with 3 additions and 3 deletions
|
@ -6,13 +6,13 @@ FROM node:8-alpine
|
||||||
MAINTAINER chamunks [at] gmail [dot] com
|
MAINTAINER chamunks [at] gmail [dot] com
|
||||||
|
|
||||||
## Install base packages and clone repo to src directory.
|
## Install base packages and clone repo to src directory.
|
||||||
RUN npm update && \
|
RUN apk update && apk --no-cache add git curl wget python build-base && \
|
||||||
apk update && apk --no-cache add git curl wget && \
|
npm update && npm i npm@latest -g && \
|
||||||
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 /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/ && \
|
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
|
## Install container support files
|
||||||
RUN curl -s https://raw.githubusercontent.com/chamunks/docker-support/master/install | /bin/sh && \
|
RUN curl -s https://raw.githubusercontent.com/chamunks/docker-support/master/install | /bin/sh && \
|
||||||
|
|
Loading…
Reference in a new issue