added build stage
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 4m58s

This commit is contained in:
2025-12-05 20:53:27 -05:00
parent 112b4e0b48
commit 6504b54578

View File

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