Skip to content

Commit c52fd91

Browse files
committed
setup docker file properly for golang
1 parent b1cca1e commit c52fd91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV PATH="/usr/local/go/bin:${PATH}" \
77
COMPOSER_ALLOW_SUPERUSER=1 \
88
DEBIAN_FRONTEND=noninteractive
99

10-
# Install dependencies, Go, PHP extensions, and tools
10+
# Install dependencies, Go, PHP extensions, Python venv and tools
1111
RUN apt-get update \
1212
&& apt-get install -y --no-install-recommends \
1313
libzip-dev \
@@ -22,6 +22,9 @@ RUN apt-get update \
2222
build-essential \
2323
pkg-config \
2424
software-properties-common \
25+
python3-venv \
26+
python3-pip \
27+
python3-setuptools \
2528
# Install Go 1.22.0
2629
&& curl -LO https://golang.org/dl/go1.22.0.linux-amd64.tar.gz \
2730
&& tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz \

0 commit comments

Comments
 (0)