Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove python install #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,6 @@ ENV build_deps="wget xz-utils git gdb tcl software-properties-common"
RUN apt-get update --fix-missing
RUN apt-get install -y $build_deps $lib_deps

# Add deadsnakes PPA for multiple Python versions
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt-get update
RUN set -ex; \
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
apt-get update && apt-get install -y python3.10-dev \
&& update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1; \
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
apt-get update && apt-get install -y python3.8-dev \
&& update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1; \
else \
echo "Unsupported platform: $TARGETPLATFORM" && exit 1; \
fi

# Fetch and build SVF source.
RUN echo "Downloading LLVM and building SVF to " ${HOME}
WORKDIR ${HOME}
Expand Down
Loading