inital commit

This commit is contained in:
Schneider Roland
2025-02-21 17:14:55 +01:00
commit cfc2d0040b
6 changed files with 1020 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:22-alpine
WORKDIR /home/node/app
USER root
RUN mkdir /data && chown -R node:node /data
USER node
ENV UPLOAD_PATH=/data
COPY ./node_modules /home/node/app/node_modules
COPY index.js package.json package-lock.json /home/node/app/
CMD ["npm", "start"]