forked from 3liz/lizmap-web-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove some deprecated statements from Dockerfile (3liz#4692)
* Remove some deprecated statements from Dockerfile * Update docker/Dockerfile
- Loading branch information
Showing
2 changed files
with
5 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,8 +4,8 @@ FROM ${REGISTRY_PREFIX}alpine:3.17 as build | |
COPY lizmap_web_client.zip . | ||
RUN unzip lizmap_web_client.zip | ||
|
||
FROM ${REGISTRY_PREFIX}alpine:3.17 | ||
MAINTAINER David Marteau <[email protected]> | ||
FROM alpine:3.17 | ||
LABEL org.opencontainers.image.authors="David Marteau <[email protected]>" | ||
LABEL Description="Lizmap web client" Vendor="3liz.org" Version="23.02.0" | ||
|
||
RUN apk update && apk upgrade && \ | ||
|
@@ -64,7 +64,7 @@ COPY php-fpm-healthcheck /usr/local/bin/ | |
|
||
RUN chmod 755 /bin/lizmap-entrypoint.sh /bin/update-config.php /usr/local/bin/php-fpm-healthcheck | ||
|
||
ENV PHP_INI_DIR /etc/php81 | ||
ENV PHP_INI_DIR=/etc/php81 | ||
|
||
HEALTHCHECK --interval=60s --timeout=30s CMD php-fpm-healthcheck || exit 1 | ||
|
||
|
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