Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ COPY . .
RUN apt-get update && apt-get install -y --no-install-recommends gnupg ca-certificates=* curl=* \
python3-pip=* python3=* \
&& pip3 config set global.break-system-packages true \
&& pip3 install 'wheel>=0.35.1' \
&& ./install.sh --docker-install \
&& apt-get purge -y --autoremove python3-pip \
&& apt-get purge -y --autoremove \
python3-dev python3-pip \
automake build-essential cpp pkg-config libffi-dev libssl-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

2 changes: 0 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,6 @@ main ()
fi
# shellcheck source=/dev/null
source "${jm_root}/bin/activate"
else
upgrade_setuptools
fi
if [[ ${build_local_tor} == "1" ]]; then
if ! tor_deps_install; then
Expand Down
Loading