Skip to content

Commit

Permalink
exclude setuptools from build
Browse files Browse the repository at this point in the history
  • Loading branch information
ekneg54 committed Aug 16, 2024
1 parent 6becffe commit 0838835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ ARG no_proxy

ADD . /logprep
WORKDIR /logprep
RUN python -m pip install --upgrade pip wheel setuptools>=72.2.0
RUN python -m venv /opt/venv
# Make sure we use the virtualenv:
ENV PATH="/opt/venv/bin:$PATH"
RUN python -m pip install --upgrade pip wheel setuptools

RUN if [ "$LOGPREP_VERSION" = "dev" ]; then pip install .;\
elif [ "$LOGPREP_VERSION" = "latest" ]; then pip install git+https://github.com/fkie-cad/Logprep.git@latest; \
Expand Down

0 comments on commit 0838835

Please sign in to comment.