Skip to content

Commit

Permalink
Chore: remove unused build stage names in single-stage image manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
almereyda committed May 22, 2024
1 parent ec5aa56 commit f6123c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion context/cron/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG PRETALX_BASE_IMAGE=docker.io/library/pretalx/pretalx
ARG PRETALX_BASE_TAG=2024.1.0


FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG} AS system
FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG}
USER root

# Install cron
Expand Down
2 changes: 1 addition & 1 deletion context/extended/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG PRETALX_BASE_IMAGE=docker.io/library/pretalx/pretalx
ARG PRETALX_BASE_TAG=2024.1.0

FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG} AS system
FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG}
RUN pip3 install -U --user prtx-faq \
pretalx-pages \
pretalx-public-voting
2 changes: 1 addition & 1 deletion context/source/standalone/Dockerfile.debian.local
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG PRETALX_BASE_IMAGE=pretalx/base
ARG PRETALX_BASE_TAG=3.12-bookworm

FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG} AS standalone
FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG}

COPY --chown=999 pretalx/pyproject.toml /pretalx
COPY --chown=999 pretalx/src /pretalx/src
Expand Down
2 changes: 1 addition & 1 deletion context/standalone/extended.cron/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG PRETALX_BASE_IMAGE=pretalx/standalone-extended
ARG PRETALX_BASE_TAG=2024.2.1

FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG} AS standalone-extended-cron
FROM ${PRETALX_BASE_IMAGE}:${PRETALX_BASE_TAG}

RUN apt update && \
apt install -y \
Expand Down

0 comments on commit f6123c1

Please sign in to comment.