fix build step
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 4m2s

This commit is contained in:
2025-12-05 21:04:09 -05:00
parent 6504b54578
commit 4877403be2

View File

@@ -15,23 +15,18 @@ 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
# Bundle app source
# Build app
COPY . .
# Install only production app dependencies
RUN yarn install --immutable
RUN yarn build
USER node