chore: move architecture check to build.yaml
Some checks failed
build-terraform-alpine / build-image (push) Failing after 20s

This commit is contained in:
2025-01-23 23:00:35 +00:00
parent 6a250ecfb1
commit 33b5351701
2 changed files with 9 additions and 8 deletions

View File

@@ -2,13 +2,7 @@ FROM alpine:latest
ARG PRODUCT
ARG VERSION
RUN ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \
ARCH="amd64"; \
elif [ "$ARCH" = "aarch64" ]; then \
ARCH="${ARCH}"; \
fi
ARG ARCH
RUN apk add --no-cache git npm bash