Skip to content
This repository was archived by the owner on Jun 15, 2025. It is now read-only.
Closed
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
FROM python:3.13.2 AS python
RUN python -V > .python_version

FROM ghcr.io/pumbaasdad/poetry:2025-03-30 AS poetry
FROM ghcr.io/pumbaasdad/poetry:2025-05-05 AS poetry
RUN poetry -V > .poetry_version

FROM ghcr.io/pumbaasdad/poetry:2025-03-30
FROM ghcr.io/pumbaasdad/poetry:2025-05-05

LABEL maintainer="Pumbaa's Dad <32616257+pumbaasdad@users.noreply.github.com>"

Expand Down Expand Up @@ -67,7 +67,7 @@
COPY --from=rclone /usr/local/bin/rclone /usr/local/bin/rclone
COPY --from=docker /usr/local/bin/ /usr/local/bin/

ENV VOLUMERIZE_HOME=/etc/volumerize \

Check warning on line 70 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-base / 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 "GOOGLE_DRIVE_CREDENTIAL_FILE") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
VOLUMERIZE_CACHE=/volumerize-cache \
VOLUMERIZE_SCRIPT_DIR=/opt/volumerize \
PATH=$PATH:/etc/volumerize \
Expand Down
Loading