214baf83fb
* 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 <admin@softwarenoob.com>
26 lines
618 B
Docker
26 lines
618 B
Docker
# Stage 1 (Build)
|
|
FROM golang:1.17-alpine AS builder
|
|
|
|
ARG VERSION
|
|
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 go build \
|
|
-ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=$VERSION" \
|
|
-v \
|
|
-trimpath \
|
|
-o wings \
|
|
wings.go
|
|
RUN echo "ID=\"distroless\"" > /etc/os-release
|
|
|
|
# Stage 2 (Final)
|
|
FROM gcr.io/distroless/static:latest
|
|
COPY --from=builder /etc/os-release /etc/os-release
|
|
|
|
COPY --from=builder /app/wings /usr/bin/
|
|
CMD [ "/usr/bin/wings", "--config", "/etc/pterodactyl/config.yml" ]
|
|
|
|
EXPOSE 8080
|