Skip to content

Commit 9698736

Browse files
authored
Merge pull request #248 from MrOffline77/master
Fixed php73 image
2 parents 113d841 + 1ccca56 commit 9698736

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

bin/php73/Dockerfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ FROM php:7.3-apache-stretch
55

66
ARG DEBIAN_FRONTEND=noninteractive
77

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+
815
# Update
916
RUN apt-get -y update --fix-missing && \
1017
apt-get upgrade -y && \
@@ -60,4 +67,4 @@ RUN a2enmod ssl && a2enmod rewrite
6067
RUN a2enmod rewrite headers
6168

6269
# Cleanup
63-
RUN rm -rf /usr/src/*
70+
RUN rm -rf /usr/src/*

0 commit comments

Comments
 (0)