Skip to content

Commit

Permalink
Update base and builder images release tags (#3251)
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Wilczyński <[email protected]>
  • Loading branch information
kwilczynski authored Mar 3, 2023
1 parent ecfda15 commit 9af9fce
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 9af9fce

Please sign in to comment.