From 6eab2bc59be15e3a062d1c7ce06d10acf21bec4b Mon Sep 17 00:00:00 2001 From: Lucid Kobold <72232219+LucidKobold@users.noreply.github.com> Date: Fri, 20 Jun 2025 17:08:34 -0400 Subject: [PATCH] Remade dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 39c7f77..a4795c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,12 @@ COPY package.json yarn.lock ./ # Install app dependencies RUN yarn install --immutable +# Type check app +RUN yarn typecheck + # Bundle app source COPY . . -# Type check app -RUN yarn typecheck FROM base AS runner