Merge branch 'main' of github.com:benzine-framework/docker

This commit is contained in:
Greyscale 2024-04-04 07:22:00 +02:00
commit 6a3b0b3d9c
No known key found for this signature in database
GPG key ID: 74BAFF55434DA4B2

View file

@ -2,7 +2,9 @@
FROM marshall:build AS php-core
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \
org.opencontainers.image.source="https://github.com/benzine-framework/docker"
org.opencontainers.image.source="https://github.com/benzine-framework/docker" \
org.opencontainers.image.description="Build of Marshall with PHP"
ARG PHP_PACKAGES
ARG COMPOSER_VERSION
ENV COMPOSER_ALLOW_SUPERUSER=1
@ -79,7 +81,9 @@ RUN composer --version && \
FROM php-cli AS php-nginx
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \
org.opencontainers.image.source="https://github.com/benzine-framework/docker"
org.opencontainers.image.source="https://github.com/benzine-framework/docker" \
org.opencontainers.image.description="Build of Marshall with Nginx + PHP"
ARG PHP_VERSION
ARG PHP_MEMORY_LIMIT=128M
ARG PHP_DATA_MAX_SIZE=1024M
@ -201,7 +205,9 @@ HEALTHCHECK --interval=30s --timeout=3s \
FROM php-cli AS php-apache
LABEL maintainer="Matthew Baggett <matthew@baggett.me>" \
org.label-schema.vcs-url="https://github.com/benzine-framework/docker" \
org.opencontainers.image.source="https://github.com/benzine-framework/docker"
org.opencontainers.image.source="https://github.com/benzine-framework/docker" \
org.opencontainers.image.description="Build of Marshall with Apache + PHP"
ARG PHP_VERSION
# ts:skip=AC_DOCKER_0002 Mis-detecting usage of apt instead of apt-get
RUN apt-get -qq update && \