Files
Michael (Parker) Parker 27f9daccf7 bump go version (#172)
* bump go version

change go version for push and release to 1.25.7 and 1.26.0

* update dockerfile
2026-03-05 09:22:38 -05:00

26 lines
616 B
Docker

# Stage 1 (Build)
FROM golang:1.25.7-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/pelican-dev/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/pelican/config.yml" ]
EXPOSE 8080