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 1223a8d commit de41ca7
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 10 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
4 changes: 2 additions & 2 deletions jessie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
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 sed -i -e 's/deb.debian.org/archive.debian.org/g' -e '/security.debian.org/d' -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
4 changes: 2 additions & 2 deletions stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
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 sed -i -e 's/deb.debian.org/archive.debian.org/g' -e '/security.debian.org/d' -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
4 changes: 2 additions & 2 deletions wheezy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawirele
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 sed -i -e 's/deb.debian.org/archive.debian.org/g' -e '/security.debian.org/d' -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 de41ca7

Please sign in to comment.