Files
Geradores/geradoresfe/Dockerfile
SECUNDIS\masantos ed33d7ec28 Gerador NIF na APP
2024-04-11 22:21:24 +01:00

13 lines
116 B
Docker

FROM node:20-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]