Skip to content

Commit

Permalink
Merge pull request #62 from Aeliot-Tm/docker-env
Browse files Browse the repository at this point in the history
Fix docker envs
  • Loading branch information
Aeliot-Tm authored Nov 30, 2024
2 parents df19a5b + af2925b commit 8b237fc
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .docker/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@ ARG DEBIAN_RELEASE=bullseye

FROM php:${PHP_VERSION}-fpm-${DEBIAN_RELEASE}

ENV COMPOSER_ALLOW_SUPERUSER 1
ENV COMPOSER_NO_INTERACTION 1
ENV COMPOSER_VERSION 2.7.6
ENV DEBIAN_FRONTEND noninteractive
ENV DOCKER_PHP_DEPS \
gnupg \
libxml2-dev \
libzip-dev \
unzip
ARG COMPOSER_ALLOW_SUPERUSER=1
ARG COMPOSER_NO_INTERACTION=1
ARG COMPOSER_VERSION=2.7.6
ARG DEBIAN_FRONTEND=noninteractive
ARG DOCKER_PHP_DEPS='gnupg libxml2-dev libzip-dev unzip'

RUN set -xe; \
apt-get --allow-releaseinfo-change update && \
Expand Down

0 comments on commit 8b237fc

Please sign in to comment.