added build args and variables
Some checks are pending
Main / build-and-push-docker-image (20.x) (push) Has started running

This commit is contained in:
2025-12-06 20:52:00 -05:00
parent 8ae9946ef9
commit 9557833df6
3 changed files with 13 additions and 3 deletions

View File

@@ -26,6 +26,10 @@ RUN corepack enable
RUN corepack prepare yarn@stable --activate
ARG DATABASE_URL
ENV DATABASE_URL=${DATABASE_URL}
ARG NEXT_PUBLIC_GRAPHQL_URL
ENV NEXT_PUBLIC_GRAPHQL_URL=${NEXT_PUBLIC_GRAPHQL_URL}
ARG NEXT_PUBLIC_API_TOKEN
ENV NEXT_PUBLIC_API_TOKEN=${NEXT_PUBLIC_API_TOKEN}
RUN corepack enable
RUN corepack prepare yarn@stable --activate
WORKDIR /app