Update dependency tailwind-merge to v2.5.3 - abandoned #51

Closed
renovate-bot wants to merge 20 commits from renovate/tailwind-merge-2.x-lockfile into master
Showing only changes of commit d400023f51 - Show all commits

@ -19,10 +19,6 @@ RUN apk update
RUN apk add --no-cache python3 make g++ gcc pkgconfig pixman cairo-dev libjpeg-turbo-dev pango-dev giflib-dev
WORKDIR /app
# First install the dependencies (as they change less often)
COPY --from=builder /app/out/json/ .
RUN pnpm install --frozen-lockfile --quiet
# Add the commit hash
ARG GIT_REV
ENV GIT_REV=${GIT_REV}
@ -34,6 +30,10 @@ ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
# First install the dependencies (as they change less often)
COPY --from=builder /app/out/json/ .
RUN pnpm install --frozen-lockfile --quiet
# Build the project
COPY --from=builder /app/out/full/ .
RUN pnpm turbo run build --filter=frontend...