dockerized

This commit is contained in:
Jose Conde
2024-07-17 00:13:21 +02:00
parent 2dcad68ff1
commit 4e75c3af77
10 changed files with 529 additions and 9 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm i
COPY . .
EXPOSE 8080
CMD ["npm", "run", "serve"]