Create Dockerfile

This commit is contained in:
nune 2024-12-18 17:20:24 -05:00 committed by GitHub
parent 1c22803068
commit 4a0cf96b7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

13
Dockerfile Normal file
View File

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