This commit is contained in:
2024-06-04 09:02:46 +02:00
parent fdb31f61c2
commit b56cfdc165
6 changed files with 66 additions and 4 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY ./src .
EXPOSE 3000
CMD ["node", "server.js"]