Files
graphs/backend/Dockerfile
Cauê Faleiros 0e5354f1fe
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 3m36s
Initial commit: Dockerized, Postgres, CI/CD pipeline
2026-05-04 14:40:14 -03:00

7 lines
112 B
Docker

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