We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e473ce3 commit ac72a84Copy full SHA for ac72a84
docker/php/Dockerfile
@@ -1,5 +1,11 @@
1
FROM php:7.2-fpm
2
3
+# Fix Debian Buster EOL - point to archive repositories
4
+RUN sed -i 's/deb.debian.org/archive.debian.org/g' /etc/apt/sources.list && \
5
+ sed -i 's|security.debian.org/debian-security|archive.debian.org/debian-security|g' /etc/apt/sources.list && \
6
+ sed -i '/stretch-updates/d' /etc/apt/sources.list && \
7
+ sed -i '/buster-updates/d' /etc/apt/sources.list
8
+
9
RUN apt-get update && apt-get install -y --no-install-recommends \
10
git \
11
wget \
0 commit comments