Update Dockerfile

This commit is contained in:
Devin Buhl 2024-04-14 11:46:58 -04:00 committed by GitHub
parent bd3f813687
commit fdc97d6e51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,11 @@ RUN apk add --no-cache \
&& pip install --upgrade --requirement /app/requirements.txt \ && pip install --upgrade --requirement /app/requirements.txt \
&& apk del --purge .build-deps \ && apk del --purge .build-deps \
&& chown -R root:root /app \ && chown -R root:root /app \
&& chmod -R 755 /app && chmod -R 755 /app \
&& rm -rf \
/root/.cache \
/root/.cargo \
/tmp/*
ENV PLEXAPI_CONFIG_PATH="/config/config.ini" \ ENV PLEXAPI_CONFIG_PATH="/config/config.ini" \
JBOPS_SCRIPT_PATH="fun/plexapi_haiku.py" JBOPS_SCRIPT_PATH="fun/plexapi_haiku.py"