1
0
Fork 0

Dockerfile for personal environment

pull/2/head
Ambrose Chua 2018-04-02 20:13:09 +08:00 committed by GitHub
parent 49347d3e83
commit 710da0030e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
Dockerfile.env Normal file
View File

@ -0,0 +1,11 @@
FROM registry.labs.0x.no/env
RUN apk add --no-cache build-base
COPY . /usr/local/fm
RUN cd /usr/local/fm \
&& yarn install \
&& yarn cache clean
CMD ["node", "/usr/local/fm/index.js"]