From 6504b54578c92c0c44c917e31faa5d76fc1990a7 Mon Sep 17 00:00:00 2001 From: Lucid Date: Fri, 5 Dec 2025 20:53:27 -0500 Subject: [PATCH] added build stage --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 18b5e1b..7a80db2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,12 +15,15 @@ COPY package.json yarn.lock ./ # Install app dependencies RUN yarn install --immutable +FROM base AS build # Type check app # RUN yarn typecheck # Bundle app source COPY . . +RUN yarn build + FROM base AS runner