fixing arg to be assigned to ENV
Build and Push Image / build-and-push (push) Failing after 1m41s

This commit is contained in:
2026-05-13 22:30:45 -07:00
parent f6ff2ee69b
commit 7dc66697ea
+3 -1
View File
@@ -1,6 +1,8 @@
FROM node:24-alpine FROM node:24-alpine
ENV DATABASE_URL=<the_database_url> ARG DATABASE_URL
ENV DATABASE_URL=${DATABASE_URL}
WORKDIR /app WORKDIR /app
COPY . . COPY . .