switched from stable-slim to stable-backports

This commit is contained in:
Micha Gläß-Stöcker 2020-10-08 17:58:55 +02:00
parent ff92cac918
commit c17a5dacd3

View file

@ -7,10 +7,10 @@
# #
# Here, `dockerhost` is the IP address or FQDN of a host running the Docker daemon # Here, `dockerhost` is the IP address or FQDN of a host running the Docker daemon
# which acts as an APT proxy server. # which acts as an APT proxy server.
FROM debian:stable-slim FROM debian:stable-backports
VOLUME ["/var/cache/apt-cacher-ng"] VOLUME ["/var/cache/apt-cacher-ng"]
RUN apt-get update && apt dist-upgrade -y && apt-get install -y apt-cacher-ng wget && rm -rf /var/lib/apt/lists/* RUN apt-get update && apt dist-upgrade -y && apt-get install -t buster-backports -y apt-cacher-ng wget && rm -rf /var/lib/apt/lists/*
RUN echo "PassThroughPattern: .*" >> /etc/apt-cacher-ng/zz_debconf.conf RUN echo "PassThroughPattern: .*" >> /etc/apt-cacher-ng/zz_debconf.conf
EXPOSE 3142 EXPOSE 3142