Skip to content

Commit 428deb2

Browse files
committed
Fix for Composer error "The zip extension and unzip/7z commands are both missing"
1 parent 6c767d9 commit 428deb2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ FROM php:8.3
33
RUN apt-get update \
44
&& apt-get install -yq --no-install-recommends \
55
git \
6-
zip \
7-
zlib1g-dev \
86
openssl \
7+
libzip-dev \
8+
zlib1g-dev \
9+
&& docker-php-ext-install zip \
910
&& rm -rf /var/lib/apt/lists/*
1011

1112
COPY . /app

0 commit comments

Comments
 (0)