Skip to content

Commit

Permalink
Trying to fix debian/pip issue
Browse files Browse the repository at this point in the history
  • Loading branch information
filip-debricked committed Aug 19, 2024
1 parent 81f9640 commit 08d609e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build/docker/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,18 +94,21 @@ ENV GOLANG_VERSION 1.22
RUN apt -y update && apt -y upgrade && apt -y install \
python3 \
python3-venv \
python-is-python3 \
python3-distutils \
ca-certificates \
python3-pip && \
apt -y install -t unstable \
golang-$GOLANG_VERSION \
openjdk-21-jre && \
apt -y clean && rm -rf /var/lib/apt/lists/* && \
# Symlink pip3 to pip, we assume that "pip" works in CLI
ln -sf /usr/bin/pip3 /usr/bin/pip && \
ln -sf /usr/bin/python3 /usr/bin/python && \
# Symlink go binary to bin directory which is in path
ln -s /usr/lib/go-$GOLANG_VERSION/bin/go /usr/bin/go

RUN python --version
RUN pip --version
RUN pip list

RUN dotnet --version

RUN apt update -y && \
Expand Down

0 comments on commit 08d609e

Please sign in to comment.