Skip to content
Merged
Show file tree
Hide file tree
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
84 changes: 28 additions & 56 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down Expand Up @@ -110,7 +110,7 @@
USER discogsography:discogsography

# Environment variables
ENV HOME=/home/discogsography \

Check warning on line 113 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / build-discogsography (api, true)

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

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

Check warning on line 113 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / build-discogsography (api, true)

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

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "POSTGRES_PASSWORD") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion brainzgraphinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion brainztableinator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
2 changes: 1 addition & 1 deletion dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN npm install @tailwindcss/cli@^4 @tailwindcss/forms --save-dev && \
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
4 changes: 2 additions & 2 deletions docs/dockerfile-standards.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ARG GID=1000
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down Expand Up @@ -103,7 +103,7 @@ WORKDIR /app
COPY --from=builder --chown=discogsography:discogsography /app /app

# Install uv for runtime
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Create startup script
# [Startup script section - see below]
Expand Down
2 changes: 1 addition & 1 deletion explore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN npm install @tailwindcss/cli@^4 @tailwindcss/forms --save-dev && \
FROM python:${PYTHON_VERSION}-slim AS builder

# Install uv
COPY --from=ghcr.io/astral-sh/uv:0.11.11 /uv /bin/uv
COPY --from=ghcr.io/astral-sh/uv:0.11.13 /uv /bin/uv

# Set environment for build
ENV UV_SYSTEM_PYTHON=1 \
Expand Down
Loading
Loading