2020-09-18 03:48:01 +00:00
|
|
|
FROM golang:1.15-alpine
|
2020-11-15 03:22:29 +00:00
|
|
|
ARG VERSION="develop"
|
2020-04-20 02:35:05 +00:00
|
|
|
COPY . /go/wings/
|
|
|
|
WORKDIR /go/wings/
|
2020-04-26 22:12:01 +00:00
|
|
|
RUN apk add --no-cache upx \
|
2020-11-15 03:22:29 +00:00
|
|
|
&& CGO_ENABLED=0 go build -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${VERSION}" \
|
|
|
|
&& upx wings
|
2020-04-20 02:35:05 +00:00
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
COPY --from=0 /go/wings/wings /usr/bin/
|
2020-11-15 03:22:29 +00:00
|
|
|
CMD ["wings", "--config", "/etc/pterodactyl/config.yml"]
|