You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
242 B
12 lines
242 B
FROM node:16-bullseye
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
COPY . /usr/local/share/file-manager
|
|
RUN cd /usr/local/share/file-manager \
|
|
&& npm install . \
|
|
&& rm -rf ~/.npm ~/.cache
|
|
|
|
WORKDIR /data
|
|
|
|
CMD ["node", "/usr/local/share/file-manager/index.js"]
|