project structure

This commit is contained in:
2025-02-05 16:14:06 +01:00
parent e68445d8ad
commit f4749ee37d
5 changed files with 43 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:latest
WORKDIR /app
COPY package.json ./
RUN npm install
COPY src/ ./
EXPOSE 3333
CMD ["node", "app.js"]