You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/php73/Dockerfile
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,13 @@ FROM php:7.3-apache-stretch
5
5
6
6
ARG DEBIAN_FRONTEND=noninteractive
7
7
8
+
# Remove the old sources.list file.
9
+
RUN rm /etc/apt/sources.list
10
+
11
+
# Replace with this list.
12
+
RUN echo 'deb http://archive.debian.org/debian/ stretch main contrib non-free\ndeb http://archive.debian.org/debian/ stretch-proposed-updates main contrib non-free\ndeb
13
+
http://archive.debian.org/debian-security stretch/updates main contrib non-free' >> /etc/apt/sources.list
14
+
8
15
# Update
9
16
RUN apt-get -y update --fix-missing && \
10
17
apt-get upgrade -y && \
@@ -60,4 +67,4 @@ RUN a2enmod ssl && a2enmod rewrite
0 commit comments