Files
project-inter-server/Dockerfile
Brendan Chen 15504ecba3
All checks were successful
Publish image / deploy (push) Successful in 3m47s
Add the build step to the Dockerfile
2026-09-02 13:49:27 -07:00

8 lines
109 B
Docker

FROM node:22-alpine
WORKDIR /usr/src/app
COPY . .
RUN npm run build
EXPOSE 4000
CMD ["npm", "run", "start"]