We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72739a commit 821e5b8Copy full SHA for 821e5b8
1 file changed
src/Servers/WorkermanServer/Dockerfile
@@ -1,6 +1,11 @@
1
FROM php:8.5-cli
2
3
-RUN apt install -y git
+RUN apt-get update && apt-get install -y --no-install-recommends \
4
+ curl \
5
+ unzip \
6
+ libzip-dev \
7
+ && docker-php-ext-install zip \
8
+ && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/*
9
10
COPY --from=composer/composer:latest-bin --link /composer /usr/local/bin/composer
11
0 commit comments