Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update base and builder images release tags #3251

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/app-sre/qontract-reconcile-builder:0.3.8 as build-image
FROM quay.io/app-sre/qontract-reconcile-builder:0.3.9 as build-image

WORKDIR /work

Expand All @@ -15,7 +15,7 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip setuptools wheel && \
python3 -m pip wheel . --wheel-dir /work/wheels


FROM quay.io/app-sre/qontract-reconcile-base:0.8.9 as dev-image
FROM quay.io/app-sre/qontract-reconcile-base:0.8.10 as dev-image

ARG CONTAINER_UID=1000
RUN useradd --uid ${CONTAINER_UID} reconcile
Expand Down Expand Up @@ -44,7 +44,7 @@ VOLUME ["/work"]
CMD [ "/work/dev/run.sh" ]


FROM quay.io/app-sre/qontract-reconcile-base:0.8.9 as prod-image
FROM quay.io/app-sre/qontract-reconcile-base:0.8.10 as prod-image

# Cache mount. We don't need te wheel files in the final image.
# This COPY will create a layer with all the wheel files to install the app.
Expand Down