1
0
Fork 0
file-manager/Dockerfile.env

18 lines
245 B
Bash
Raw Normal View History

2018-04-02 20:13:09 +08:00
FROM registry.labs.0x.no/env
2018-04-02 20:28:39 +08:00
USER root
2018-04-02 20:47:51 +08:00
RUN apk add --no-cache \
build-base \
python2
2018-04-02 20:13:09 +08:00
COPY . /usr/local/fm
RUN cd /usr/local/fm \
&& yarn install \
&& yarn cache clean
2018-04-02 20:28:39 +08:00
USER ambrose
2018-04-02 20:13:09 +08:00
CMD ["node", "/usr/local/fm/index.js"]