Skip to content

Update test packages that require Debian buster sources #2736

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

Merged
merged 1 commit into from
Jul 16, 2025
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-1.19.5}
FROM nginx:${SERVICE_VERSION}
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost/server-status
COPY ./nginx.conf /etc/nginx/
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-1.19.5}
FROM nginx:${SERVICE_VERSION}
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost/server-status
COPY ./nginx.conf /etc/nginx/
5 changes: 4 additions & 1 deletion test/packages/parallel/apache/_dev/deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-2.4.46}
FROM httpd:$SERVICE_VERSION
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost
COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-2.4.46}
FROM httpd:$SERVICE_VERSION
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost
COPY ./httpd.conf /usr/local/apache2/conf/httpd.conf
5 changes: 4 additions & 1 deletion test/packages/parallel/nginx/_dev/deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-1.19.5}
FROM nginx:${SERVICE_VERSION}
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost/server-status
COPY ./nginx.conf /etc/nginx/
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-1.19.5}
FROM nginx:${SERVICE_VERSION}
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost/server-status
COPY ./nginx.conf /etc/nginx/
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-1.19.5}
FROM nginx:${SERVICE_VERSION}
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost/server-status
COPY ./nginx.conf /etc/nginx/
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG SERVICE_VERSION=${SERVICE_VERSION:-1.19.5}
FROM nginx:${SERVICE_VERSION}
RUN sed -i "/jessie-updates/d" /etc/apt/sources.list
# move to archive
RUN sed -i 's/deb.debian/archive.debian/' /etc/apt/sources.list && \
sed -i 's/security.debian/archive.debian/' /etc/apt/sources.list && \
sed -i "/buster-updates/d" /etc/apt/sources.list
RUN apt-get update && apt-get install -y curl
HEALTHCHECK --interval=1s --retries=90 CMD curl -f http://localhost/server-status
COPY ./nginx.conf /etc/nginx/