1st project organization

This commit is contained in:
gprunet
2026-01-06 23:38:03 +01:00
parent 002824ee8f
commit c75970c703
5 changed files with 78 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3001
ENV NODE_ENV=development
CMD ["node", "server.js"]