Upload files to "/"

This commit is contained in:
2025-11-02 16:01:21 +00:00
commit c0aa16ff2f
3 changed files with 64 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:20-alpine
WORKDIR /app
COPY server.js ./
COPY public ./public
RUN mkdir -p data && chown -R node:node /app
USER node
EXPOSE 3000
CMD ["node","server.js"]