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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Build stage - for CSS generation using Node.js and Tailwind CLI
FROM --platform=linux/amd64 node:22.21.0-alpine 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/

WORKDIR /app

# renovate: datasource=npm depName=tailwindcss
ARG TAILWINDCSS_VERSION=4.1.15
ARG TAILWINDCSS_VERSION=4.1.16
# renovate: datasource=npm depName=@tailwindcss/cli
ARG TAILWINDCSS_CLI_VERSION=4.1.15
ARG TAILWINDCSS_CLI_VERSION=4.1.16

# Install Tailwind CSS v4 following official documentation
RUN npm install tailwindcss@${TAILWINDCSS_VERSION} @tailwindcss/cli@${TAILWINDCSS_CLI_VERSION}
Expand Down