2020-12-15 22:58:47 +00:00
|
|
|
# Stage 1 (Build)
|
2022-07-03 15:09:07 +00:00
|
|
|
FROM golang:1.17-alpine AS builder
|
2021-01-23 19:47:53 +00:00
|
|
|
|
|
|
|
ARG VERSION
|
2022-07-03 15:09:07 +00:00
|
|
|
RUN apk add --update --no-cache git make
|
2021-01-23 19:47:53 +00:00
|
|
|
WORKDIR /app/
|
|
|
|
COPY go.mod go.sum /app/
|
|
|
|
RUN go mod download
|
|
|
|
COPY . /app/
|
2022-07-03 15:09:07 +00:00
|
|
|
RUN CGO_ENABLED=0 go build \
|
2021-01-23 19:47:53 +00:00
|
|
|
-ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=$VERSION" \
|
|
|
|
-v \
|
|
|
|
-trimpath \
|
|
|
|
-o wings \
|
|
|
|
wings.go
|
2021-07-17 16:40:14 +00:00
|
|
|
RUN echo "ID=\"distroless\"" > /etc/os-release
|
2020-12-15 22:58:47 +00:00
|
|
|
|
|
|
|
# Stage 2 (Final)
|
2021-07-17 16:34:31 +00:00
|
|
|
FROM gcr.io/distroless/static:latest
|
2021-07-17 16:40:14 +00:00
|
|
|
COPY --from=builder /etc/os-release /etc/os-release
|
2021-08-16 01:31:11 +00:00
|
|
|
|
2021-01-23 19:47:53 +00:00
|
|
|
COPY --from=builder /app/wings /usr/bin/
|
2021-07-12 17:06:22 +00:00
|
|
|
CMD [ "/usr/bin/wings", "--config", "/etc/pterodactyl/config.yml" ]
|
2021-08-16 01:31:11 +00:00
|
|
|
|
|
|
|
EXPOSE 8080
|