Add the build step to the Dockerfile
All checks were successful
Publish image / deploy (push) Successful in 3m47s

This commit is contained in:
2026-09-02 13:49:27 -07:00
parent e98ef96b2e
commit 15504ecba3

View File

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