From 214baf83fb3b38f6b65b3309ebff0e746a24ec32 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Sun, 3 Jul 2022 11:09:07 -0400 Subject: [PATCH] Fix/arm64 docker (#133) * fix: arm64 docker builds Don't hardcode amd64 platform for the Wings binary. * update docker file don't specify buildplatform remove upx as it causes arm64 failures remove goos as the build is on linux hosts. Co-authored-by: softwarenoob --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f5273ed..a64d90a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,18 @@ # Stage 1 (Build) -FROM --platform=$BUILDPLATFORM golang:1.17-alpine AS builder +FROM golang:1.17-alpine AS builder ARG VERSION -RUN apk add --update --no-cache git make upx +RUN apk add --update --no-cache git make WORKDIR /app/ COPY go.mod go.sum /app/ RUN go mod download COPY . /app/ -RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \ +RUN CGO_ENABLED=0 go build \ -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=$VERSION" \ -v \ -trimpath \ -o wings \ wings.go -RUN upx wings RUN echo "ID=\"distroless\"" > /etc/os-release # Stage 2 (Final)