1
0
Fork 0
file-manager/Dockerfile

13 lines
242 B
Docker
Raw Normal View History

2021-11-16 21:38:05 +08:00
FROM node:16-bullseye
2018-03-10 22:26:23 +08:00
ENV NODE_ENV=production
2018-03-10 22:26:23 +08:00
2021-05-07 22:15:50 +08:00
COPY . /usr/local/share/file-manager
RUN cd /usr/local/share/file-manager \
&& npm install . \
&& rm -rf ~/.npm ~/.cache
2018-03-10 22:26:23 +08:00
WORKDIR /data
2021-05-07 22:15:50 +08:00
CMD ["node", "/usr/local/share/file-manager/index.js"]