Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurin-Notemann committed Jan 28, 2024
1 parent 75c7c44 commit 190ad32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/staging-deploy-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
"NEXT_PUBLIC_BACKEND_HOST=api.stage.rememberry.app"
"NEXT_PUBLIC_APP_ENV=staging"
"NEXT_PUBLIC_BACKEND_PORT=3050"
"APP_ENV=staging"
Expand Down
2 changes: 2 additions & 0 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ COPY --from=frontdeps /app/frontend/node_modules ./node_modules
COPY --from=backdir /app/backend /app/backend
COPY ./frontend .

ARG APP_ENV
ARG NEXT_PUBLIC_APP_ENV
ARG NEXT_PUBLIC_BACKEND_HOST
ARG NEXT_PUBLIC_BACKEND_PORT
ENV APP_ENV ${APP_ENV}
ENV NEXT_PUBLIC_APP_ENV ${NEXT_PUBLIC_APP_ENV}
ENV NEXT_PUBLIC_BACKEND_HOST ${NEXT_PUBLIC_BACKEND_HOST}
ENV NEXT_PUBLIC_BACKEND_PORT ${NEXT_PUBLIC_BACKEND_PORT}
Expand Down

0 comments on commit 190ad32

Please sign in to comment.