Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Docker/PlexAniSync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12 AS builder
FROM python:3.14 AS builder

RUN apt-get update && \
apt-get install -y \
Expand All @@ -11,7 +11,7 @@
# install dependencies to the local user directory (eg. /root/.local)
RUN pip install --user --no-warn-script-location -r requirements.txt

FROM python:3.12-slim
FROM python:3.14-slim

WORKDIR /plexanisync

Expand All @@ -22,7 +22,7 @@
ENV PATH=/root/.local:$PATH
ENV PYTHONPATH=/root/.local/lib/python3.12/site-packages

ENV PLEX_SECTION=Anime \

Check warning on line 25 in Docker/PlexAniSync/Dockerfile

View workflow job for this annotation

GitHub Actions / build-docker-plexanisync / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "ANI_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 25 in Docker/PlexAniSync/Dockerfile

View workflow job for this annotation

GitHub Actions / build-docker-plexanisync / build

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "PLEX_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
PLEX_URL=http://127.0.0.1:32400 \
PLEX_TOKEN='' \
ANI_USERNAME='' \
Expand Down
Loading