We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1cca1e commit c52fd91Copy full SHA for c52fd91
Dockerfile
@@ -7,7 +7,7 @@ ENV PATH="/usr/local/go/bin:${PATH}" \
7
COMPOSER_ALLOW_SUPERUSER=1 \
8
DEBIAN_FRONTEND=noninteractive
9
10
-# Install dependencies, Go, PHP extensions, and tools
+# Install dependencies, Go, PHP extensions, Python venv and tools
11
RUN apt-get update \
12
&& apt-get install -y --no-install-recommends \
13
libzip-dev \
@@ -22,6 +22,9 @@ RUN apt-get update \
22
build-essential \
23
pkg-config \
24
software-properties-common \
25
+ python3-venv \
26
+ python3-pip \
27
+ python3-setuptools \
28
# Install Go 1.22.0
29
&& curl -LO https://golang.org/dl/go1.22.0.linux-amd64.tar.gz \
30
&& tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz \
0 commit comments