Skip to content

Commit

Permalink
Don't install in editable mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed Jan 27, 2024
1 parent 2e60846 commit 325502e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extras/docker/demo/Dockerfile
Expand Up @@ -89,7 +89,7 @@ RUN python3 -m venv /home/wger/venv
RUN . /home/wger/venv/bin/activate \
&& pip install --upgrade pip \
&& pip install --no-cache /wheels/* \
&& pip install -e . \
&& pip install . \
&& wger create-settings --database-path /home/wger/db/database.sqlite \
&& wger bootstrap \
&& wger load-online-fixtures \
Expand Down
2 changes: 1 addition & 1 deletion extras/docker/development/Dockerfile
Expand Up @@ -66,7 +66,7 @@ RUN chmod +x /home/wger/entrypoint.sh \
&& chown -R wger:wger .

USER wger
RUN pip3 install -e . \
RUN pip3 install . \
&& mkdir ~/media \
&& mkdir ~/static \
&& mkdir ~/beat \
Expand Down

0 comments on commit 325502e

Please sign in to comment.