Update dockerfile to build quicker

This commit is contained in:
Dane Everitt
2020-11-14 19:22:29 -08:00
parent e2872e786e
commit d970ec35b7
2 changed files with 16 additions and 20 deletions

View File

@@ -1,14 +1,11 @@
# ----------------------------------
# Pterodactyl Panel Dockerfile
# ----------------------------------
FROM golang:1.15-alpine
ARG VERSION="develop"
COPY . /go/wings/
WORKDIR /go/wings/
RUN apk add --no-cache upx \
&& CGO_ENABLED=0 go build -ldflags="-s -w" \
&& upx --brute wings
&& CGO_ENABLED=0 go build -ldflags="-s -w -X github.com/pterodactyl/wings/system.Version=${VERSION}" \
&& upx wings
FROM alpine:latest
COPY --from=0 /go/wings/wings /usr/bin/
CMD ["wings","--config", "/etc/pterodactyl/config.yml"]
CMD ["wings", "--config", "/etc/pterodactyl/config.yml"]