-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
55 additions
and
5 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 |
---|---|---|
|
@@ -4,6 +4,18 @@ FROM php:7.4-fpm-alpine | |
# Maintainer | ||
LABEL maintainer="Alexander Graf <[email protected]>" | ||
|
||
# Build arguments | ||
ARG VCS_REF=master | ||
ARG BUILD_DATE="" | ||
|
||
# http://label-schema.org/rc1/ | ||
LABEL org.label-schema.schema-version "1.0" | ||
LABEL org.label-schema.name "PHP7-FPM" | ||
LABEL org.label-schema.build-date "${BUILD_DATE}" | ||
LABEL org.label-schema.description "All-purpose PHP-FPM 7.4 Docker image that comes with the most popular extensions" | ||
LABEL org.label-schema.vcs-url "https://github.com/otherguy/docker-php7-fpm" | ||
LABEL org.label-schema.vcs-ref "${VCS_REF}" | ||
|
||
# Install dependencies | ||
RUN apk add --no-cache --virtual .build-deps $PHPIZE_DEPS \ | ||
&& apk add --no-cache curl shadow sqlite curl-dev freetype-dev libpng-dev libjpeg-turbo-dev \ | ||
|
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