Remade dockerfile

This commit is contained in:
Lucid Kobold
2025-06-20 17:08:34 -04:00
parent b6f9b6a965
commit 6eab2bc59b

View File

@@ -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