actually make the container multi-arch
This commit is contained in:
parent
d26acf9ee0
commit
41858d6c59
1 changed files with 1 additions and 3 deletions
|
@ -8,9 +8,7 @@ RUN CGO_ENABLED=0 go build -ldflags="-s -w" -trimpath -o build/goscan
|
|||
|
||||
FROM alpine:3.20
|
||||
|
||||
RUN apk --no-cache update && apk --no-cache upgrade && apk add wget curl
|
||||
RUN wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz && tar -xf go1.23.1.linux-amd64.tar.gz -C /usr/local && rm -rf go1.23.1.linux-amd64.tar.gz
|
||||
|
||||
COPY --from=builder /usr/local/go /usr/local/go
|
||||
COPY --from=builder /app/build/goscan /goscan
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /goscan && chmod +x /entrypoint.sh
|
||||
|
|
Loading…
Reference in a new issue