We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d83c00 commit ffacf79Copy full SHA for ffacf79
Dockerfile
@@ -1,12 +1,12 @@
1
# Multi-stage build for minimal container image
2
# Uses pre-built binaries from CI artifacts
3
4
-# We use alpine as base for the final image (for shell access if needed)
5
-# ARG is used to select the correct binary based on target platform
6
-ARG TARGETPLATFORM
7
-
8
FROM alpine:latest
9
+# TARGETPLATFORM is automatically set by Docker buildx for multi-platform builds
+# Must be declared after FROM to use in this stage
+ARG TARGETPLATFORM
+
10
# Install minimal runtime dependencies (if any needed in future)
11
# Currently ansilust is statically linked, so none needed
12
0 commit comments