args
Some checks failed
Main / build-and-push-docker-image (20.x) (push) Failing after 4m22s

This commit is contained in:
2025-12-06 15:13:54 -05:00
parent 45cc9627c5
commit 2b77f7cfe3
2 changed files with 3 additions and 6 deletions

View File

@@ -1,5 +1,3 @@
ARG DATABASE_URL
# --- Stage 1: Dependencies ---
FROM node:20-alpine AS dependencies
RUN corepack enable
@@ -10,6 +8,7 @@ RUN yarn install
# --- Stage 2: Builder ---
FROM node:20-alpine AS builder
ARG DATABASE_URL
ENV DATABASE_URL=${DATABASE_URL}
RUN corepack enable
RUN corepack prepare yarn@stable --activate