diff --git a/Dockerfile b/Dockerfile index 87c715f..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 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)