Skip to content

Commit

Permalink
Remove python 3.13 from debian image
Browse files Browse the repository at this point in the history
  • Loading branch information
filip-debricked committed Jan 9, 2025
1 parent f607be5 commit afb2856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/docker/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ RUN curl -fsSLO https://dot.net/v1/dotnet-install.sh \

ENV GOLANG_VERSION="1.22"
RUN apt -y update && apt -y upgrade && apt -y install \
python-is-python3 \
ca-certificates && \
apt -y install -t unstable \
python3.12\
Expand All @@ -101,7 +100,8 @@ RUN apt -y update && apt -y upgrade && apt -y install \
openjdk-21-jdk && \
apt -y clean && rm -rf /var/lib/apt/lists/* && \
# Symlink go binary to bin directory which is in path
ln -s /usr/lib/go-$GOLANG_VERSION/bin/go /usr/bin/go
ln -s /usr/lib/go-$GOLANG_VERSION/bin/go /usr/bin/go \
ln -s /usr/bin/python /usr/bin/python3.12

RUN dotnet --version

Expand Down

0 comments on commit afb2856

Please sign in to comment.