You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nextcloud-docker/.examples/appapi/Dockerfile

12 lines
194 B

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