Skip to content

Commit 75f2b14

Browse files
Fix missing gcc
1 parent 067924a commit 75f2b14

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG DEV_PYTHON="3.13.5-slim"
1+
ARG DEV_PYTHON=3.13.5
22
FROM python:${DEV_PYTHON}
33

44
# The target platform.
@@ -41,12 +41,7 @@ RUN groupadd --gid $USER_GID $USERNAME \
4141
# Install our python requirements, and kubectl
4242
ARG KUBECTL_VERSION=1.31.11
4343
COPY requirements.txt /tmp
44-
RUN apt-get update \
45-
&& apt-get install -y --no-install-recommends \
46-
curl \
47-
git \
48-
wget \
49-
&& pip install -r /tmp/requirements.txt \
44+
RUN pip install -r /tmp/requirements.txt \
5045
&& curl -LO https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/${TARGETPLATFORM}/kubectl \
5146
&& install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \
5247
&& rm kubectl

0 commit comments

Comments
 (0)