Skip to content

Commit

Permalink
fix: failing build for public frontend docker image (#1229)
Browse files Browse the repository at this point in the history
* frontend_public_docker | 🎉 Initial commit.

Signed-off-by: mgorsk1 <[email protected]>

* frontend_public_docker | 🐛 Fixing a bug.

Signed-off-by: mgorsk1 <[email protected]>
  • Loading branch information
mgorsk1 authored Jun 15, 2021
1 parent c858811 commit c41323e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile.frontend.public
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ RUN pip3 install gunicorn

COPY --from=node-stage /app /app
COPY ./frontend /app
COPY requirements-dev.txt /app/requirements-dev.txt
COPY requirements-common.txt /app/requirements-common.txt
RUN pip3 install -e .

CMD [ "python3", "amundsen_application/wsgi.py" ]

FROM base as oidc-release

RUN pip3 install .[oidc]
RUN pip3 install -e .[oidc]
ENV FRONTEND_SVC_CONFIG_MODULE_CLASS amundsen_application.oidc_config.OidcConfig
ENV APP_WRAPPER flaskoidc
ENV APP_WRAPPER_CLASS FlaskOIDC
Expand Down

0 comments on commit c41323e

Please sign in to comment.