Rename poetry install file to .py

Signed-off-by: Kaloyan Nikolov <tzerber@gmail.com>
pull/2530/head
Kaloyan Nikolov 4 months ago
parent 4532f8d4e3
commit 5f040088aa

@ -2,10 +2,10 @@ FROM nextcloud:stable-fpm
RUN apt-get update && apt-get install -y python3.13-venv pipx
ADD ./poetry.sh /tmp/poetry.sh
ADD ./poetry.py /tmp/poetry.py
USER www-data
RUN pipx ensurepath
RUN python3 /tmp/poetry.sh
RUN python3 /tmp/poetry.py
USER root

@ -33,11 +33,11 @@ FROM nextcloud:stable-fpm
RUN apt-get update && apt-get install -y python3.13-venv pipx
ADD ./poetry.sh /tmp/poetry.sh
ADD ./poetry.py /tmp/poetry.py
USER www-data
RUN pipx ensurepath
RUN python3 /tmp/poetry.sh
RUN python3 /tmp/poetry.py
USER root
```

Loading…
Cancel
Save