wings/Dockerfile

23 lines
604 B
Docker
Raw Normal View History

2020-12-15 22:58:47 +00:00
# Stage 1 (Build)
FROM --platform=$BUILDPLATFORM golang:1.16-alpine3.13 AS builder
2021-01-23 19:47:53 +00:00
ARG VERSION
RUN apk add --update --no-cache git make upx
2021-01-23 19:47:53 +00:00
WORKDIR /app/
COPY go.mod go.sum /app/
RUN go mod download
COPY . /app/
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
-ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=$VERSION" \
-v \
-trimpath \
-o wings \
wings.go
RUN upx wings
2020-12-15 22:58:47 +00:00
# Stage 2 (Final)
2021-01-23 19:47:53 +00:00
FROM busybox:1.33.0
RUN echo "ID=\"busybox\"" > /etc/os-release
COPY --from=builder /app/wings /usr/bin/
CMD [ "/usr/bin/wings", "--config", "/etc/pterodactyl/config.yml" ]