We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e933e59 commit 7945b92Copy full SHA for 7945b92
Dockerfile
@@ -29,7 +29,9 @@ RUN npm run build
29
#########################################
30
# We are using Github Actions: redhat-actions/buildah-build@v2 which seems to need manual specification of arch in build steps
31
# Remove ARCH if docker buildx is supported in the CI release as --platform=$TARGETPLATFORM will be automatically set
32
-ARG ARCH
33
-FROM ${ARCH}/nginx:stable-alpine AS cyberchef
+ARG TARGETARCH
+FROM ${TARGETARCH}/nginx:stable-alpine AS cyberchef
34
+
35
+RUN echo "I'm building for $TARGETARCH"
36
37
COPY --from=builder /app/build/prod /usr/share/nginx/html/
0 commit comments