Create Dockerfile

Paso 1 Dockerfile.
This commit is contained in:
gartesa 2024-12-09 11:11:13 +01:00 committed by GitHub
commit 239049066d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
Dockerfile Normal file
View file

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