-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from silinternational/feature/PHP7.3-and-other…
…-improvements Feature/php7.3 and other improvements
- Loading branch information
Showing
10 changed files
with
2,332 additions
and
1,068 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
FROM silintl/php7:7.2 | ||
MAINTAINER Mark Tompsett <[email protected]> | ||
FROM php:7.3-apache-buster | ||
LABEL maintainer="Mark Tompsett <[email protected]>" | ||
|
||
ENV REFRESHED_AT 2020-05-07 | ||
|
||
# Fix timezone stuff from hanging. | ||
RUN apt-get update -y && echo "America/New_York" > /etc/timezone; \ | ||
apt-get install -y tzdata | ||
ENV REFRESHED_AT 2021-03-24 | ||
|
||
# Make sure apt has current list/updates | ||
RUN apt-get update -y \ | ||
# Fix timezone stuff from hanging. | ||
&& echo "Etc/UTC" > /etc/timezone \ | ||
&& apt-get install -y tzdata \ | ||
# Install necessary PHP building blocks | ||
RUN apt-get install -y zip unzip make curl wget php | ||
&& apt-get install -y zip unzip make curl wget \ | ||
# Clean up to reduce docker image size | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN mkdir -p /data | ||
WORKDIR /data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.