From 15504ecba383a1acf1bf488cc940d015a5a4724c Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Wed, 2 Sep 2026 13:49:27 -0700 Subject: [PATCH] Add the build step to the Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index cd186b5..b8af770 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ FROM node:22-alpine WORKDIR /usr/src/app COPY . . +RUN npm run build EXPOSE 4000 + +CMD ["npm", "run", "start"]