Skip to content

Commit

Permalink
refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Feb 2, 2024
1 parent fc7150b commit daea7f8
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
ENV REFRESHED_AT 2024-02-02

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang pbuilder

VOLUME /code
Expand Down
2 changes: 1 addition & 1 deletion bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
ENV REFRESHED_AT 2024-02-02

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang-11 pbuilder

VOLUME /code
Expand Down
2 changes: 1 addition & 1 deletion buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
ENV REFRESHED_AT 2024-02-02

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang-7 pbuilder

VOLUME /code
Expand Down
2 changes: 1 addition & 1 deletion jessie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV REFRESHED_AT 2024-02-02
# fix repositories
RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' -e '/jessie-updates/d' /etc/apt/sources.list
RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang-3.5 pbuilder

VOLUME /code
Expand Down
2 changes: 2 additions & 0 deletions precise/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-02-02

# fix repositories
RUN sed -i -e 's/archive.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list
RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.ubuntu.com/ubuntu > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang pbuilder
Expand Down
2 changes: 1 addition & 1 deletion sid/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
ENV REFRESHED_AT 2024-02-02

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang pbuilder

VOLUME /code
Expand Down
2 changes: 1 addition & 1 deletion stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV REFRESHED_AT 2024-02-02
# fix repositories
RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' -e '/stretch-updates/d' /etc/apt/sources.list
RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes clang-3.8 pbuilder

VOLUME /code
Expand Down
2 changes: 1 addition & 1 deletion wheezy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV REFRESHED_AT 2024-02-02
# fix repositories
RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' -e '/wheezy-updates/d' /etc/apt/sources.list
RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.debian.org/debian > /etc/pbuilderrc
RUN echo MIRRORSITE=http://deb.debian.org/debian > /etc/pbuilderrc
RUN apt-get install -qq --assume-yes pbuilder

VOLUME /code
Expand Down

0 comments on commit daea7f8

Please sign in to comment.