Skip to content

Commit

Permalink
fix: args
Browse files Browse the repository at this point in the history
  • Loading branch information
orig committed Sep 9, 2023
1 parent 68a6938 commit fb9f457
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
ARG API_DOMAIN
ARG CLIENTSIDE_API_DOMAIN
ARG DOMAIN

# --------------------------------------------
# Dependencies Stage
# --------------------------------------------
Expand All @@ -21,6 +17,12 @@ RUN npm ci
# --------------------------------------------
# Intermediate docker image to build the bundle in and install dependencies
FROM node:19.2-alpine3.15 as build

# Arguments passed from docker-compose.yml / workflow
ARG API_DOMAIN
ARG CLIENTSIDE_API_DOMAIN
ARG DOMAIN

WORKDIR /app

COPY . .
Expand Down

0 comments on commit fb9f457

Please sign in to comment.