Añadir Dockerfile

This commit is contained in:
2026-02-02 21:40:39 +00:00
parent 0066e0812d
commit f486a2e4b4

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --omit=dev
COPY . .
EXPOSE 3000
CMD ["npm", "start"]