This commit is contained in:
José Conde
2023-01-06 16:34:22 +01:00
parent c38d1f977e
commit b979ba83b7
268 changed files with 3612 additions and 84 deletions

7
Dockerfile Normal file
View File

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