Skip to content

Commit 15b0547

Browse files
committed
unix: modernize container images and packages
It's been a while since we've done this. Let's keep things modern. This is a good time to do this since we're about to refresh the Clang toolchain.
1 parent 5231769 commit 15b0547

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cpython-unix/base.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ CMD ["/bin/bash", "--login"]
1818
WORKDIR '/build'
1919

2020
RUN for s in debian_jessie debian_jessie-updates debian-security_jessie/updates; do \
21-
echo "deb http://snapshot.debian.org/archive/${s%_*}/20220212T214116Z/ ${s#*_} main"; \
21+
echo "deb http://snapshot.debian.org/archive/${s%_*}/20220429T205342Z/ ${s#*_} main"; \
2222
done > /etc/apt/sources.list && \
2323
( echo 'quiet "true";'; \
2424
echo 'APT::Get::Assume-Yes "true";'; \

cpython-unix/build.cross.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Debian Stretch.
2-
FROM debian@sha256:4b9b2ef8de1f3e9531626e8eb3d19e104e9dfde0a2b0f42b763b38235773f48e
2+
FROM debian@sha256:cebe6e1c30384958d471467e231f740e8f0fd92cbfd2a435a186e9bada3aee1c
33
MAINTAINER Gregory Szorc <[email protected]>
44

55
RUN groupadd -g 1000 build && \
@@ -18,7 +18,7 @@ CMD ["/bin/bash", "--login"]
1818
WORKDIR '/build'
1919

2020
RUN for s in debian_stretch debian_stretch-updates debian-security_stretch/updates; do \
21-
echo "deb http://snapshot.debian.org/archive/${s%_*}/20210927T204628Z/ ${s#*_} main"; \
21+
echo "deb http://snapshot.debian.org/archive/${s%_*}/20220429T205342Z/ ${s#*_} main"; \
2222
done > /etc/apt/sources.list && \
2323
( echo 'quiet "true";'; \
2424
echo 'APT::Get::Assume-Yes "true";'; \

0 commit comments

Comments
 (0)