- add force option
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
oonyeje 2025-02-24 00:25:00 -05:00
parent 4e766f041a
commit 26d4725b08

View File

@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm install -g yarn && yarn install --frozen-lockfile --production=false --cache-folder /yarn-cache && yarn cache clean --force && rm -rf /yarn-cache /tmp/* RUN npm install -g yarn --force && yarn install --frozen-lockfile --production=false --cache-folder /yarn-cache && yarn cache clean --force && rm -rf /yarn-cache /tmp/*
COPY . . COPY . .
# RUN yarn build # Uncomment if you have a build step # RUN yarn build # Uncomment if you have a build step
@ -11,7 +11,7 @@ FROM node:20-alpine
WORKDIR /app WORKDIR /app
COPY --from=builder /app/package*.json ./ COPY --from=builder /app/package*.json ./
COPY --from=builder /app/yarn.lock ./ COPY --from=builder /app/yarn.lock ./
RUN npm install -g yarn && yarn install --frozen-lockfile --production --cache-folder /yarn-cache && yarn cache clean --force && rm -rf /yarn-cache /tmp/* RUN npm install -g yarn --force && yarn install --frozen-lockfile --production --cache-folder /yarn-cache && yarn cache clean --force && rm -rf /yarn-cache /tmp/*
COPY --from=builder /app/ . COPY --from=builder /app/ .
EXPOSE 3000 EXPOSE 3000