Skip to content

Commit

Permalink
avoid installing wis2box as a Python egg (#485)
Browse files Browse the repository at this point in the history
* avoid installing wis2box as a Python egg

* avoid installing wis2box as a Python egg
  • Loading branch information
tomkralidis authored Aug 17, 2023
1 parent e4e2b9b commit 4c3912e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wis2box-management/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ RUN apt-get update -y && apt-get install -y ${DEBIAN_PACKAGES} \
COPY . /app
# install wis2box
RUN cd /app \
&& python3 setup.py install \
# install wis2box as an editable package in /app/wis2box
&& pip3 install -e . \
# install wis2box plugins, if defined
&& $PIP_PLUGIN_PACKAGES \
# add wis2box user
Expand Down

0 comments on commit 4c3912e

Please sign in to comment.