From 5dbe466dffaf6ef64129235a77bb856f5da52d05 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Mon, 1 Apr 2024 00:39:58 +0100 Subject: [PATCH] Added the arguments to Dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9281d1f..0cd6f09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,10 @@ RUN yarn global add node-gyp RUN yarn config set network-timeout 600000 -g && yarn install --production ENV PATH /opt/node_modules/.bin:$PATH ENV NODE_ENV=production + +ARG GCS_BUCKET_NAME +ARG GCS_SERVICE_ACCOUNT + WORKDIR /opt/app COPY . . RUN yarn build