Compare commits

...

3 Commits

Author SHA1 Message Date
Michael (Parker) Parker
a672b9ad2e
Merge pull request #132 from parkervcp/fix/arm64-docker
update docker file
2022-07-02 18:44:38 -04:00
Michael Parker
56a9693767 update docker file
don't specify buildplatform
remove upx as it causes arm64 failures
remove goos as the build is on linux hosts.
2022-07-02 18:43:13 -04:00
softwarenoob
447f1c31aa
fix: arm64 docker builds
Don't hardcode amd64 platform for the Wings binary.
2022-06-17 10:35:34 +03:00

View File

@ -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)