Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage - for CSS generation only (forced to amd64 for tool availability)
FROM --platform=linux/amd64 python:3.13.7-slim AS builder

Check warning on line 2 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-and-publish

FROM --platform flag should not use a constant value

FromPlatformFlagConstDisallowed: FROM --platform flag should not use constant value "linux/amd64" More info: https://docs.docker.com/go/dockerfile/rule/from-platform-flag-const-disallowed/

# Install build dependencies for Tailwind CSS
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand All @@ -8,7 +8,7 @@

# Tailwind CSS version
# renovate: datasource=github-releases depName=tailwindlabs/tailwindcss
ARG TAILWIND_VERSION=v4.1.12
ARG TAILWIND_VERSION=v4.1.13

# Install Tailwind CSS binary (always x64 since we're on amd64 platform)
RUN curl -L https://github.com/tailwindlabs/tailwindcss/releases/download/${TAILWIND_VERSION}/tailwindcss-linux-x64 -o /usr/local/bin/tailwindcss && \
Expand Down