Skip to content

Commit

Permalink
fix: stop OpenShift build from testing different image registries (#2658
Browse files Browse the repository at this point in the history
)
  • Loading branch information
sirtawast authored Dec 22, 2023
1 parent cfc14bc commit 8a63169
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions backend/docker/benefit.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ==============================
FROM helsinkitest/python:3.9-slim as appbase
FROM helsinkitest/python:3.9-slim AS appbase
# ==============================
ARG SENTRY_RELEASE

Expand Down Expand Up @@ -29,7 +29,7 @@ ENTRYPOINT ["/entrypoint/docker-entrypoint.sh"]
COPY --chown=appuser:appuser benefit /app/

# ==============================
FROM appbase as development
FROM appbase AS development
# ==============================

COPY --chown=appuser:appuser benefit/requirements-dev.txt /app/requirements-dev.txt
Expand All @@ -50,7 +50,7 @@ RUN django-admin compilemessages
EXPOSE 8000/tcp

# ==============================
FROM appbase as production
FROM appbase AS production
# ==============================
ARG SENTRY_RELEASE
ENV SENTRY_RELEASE=$SENTRY_RELEASE
Expand Down
2 changes: 1 addition & 1 deletion frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# =======================================
FROM helsinkitest/node:18-slim AS distbase
FROM docker.io/helsinkitest/node:18-slim AS distbase
# =======================================

# Install ca-certificates so that Sentry can upload source maps
Expand Down

0 comments on commit 8a63169

Please sign in to comment.