1
0
Fork 0
file-manager/Dockerfile.env

12 lines
196 B
Bash
Raw Normal View History

2018-04-02 20:13:09 +08:00
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"]