fix buildfile hardcoded arch
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 1m0s

This commit is contained in:
Merith 2025-07-16 21:09:30 +00:00
parent 99b1fad6b9
commit f73095ed36

View file

@ -14,7 +14,7 @@ RUN go mod download
COPY ./cmd/simpleproxy ./cmd/simpleproxy
# Build the binary with optimizations
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o /app/simpleproxy ./cmd/simpleproxy
RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o /app/simpleproxy ./cmd/simpleproxy
# Final Minimal Image
FROM alpine:latest