Files
castor/Dockerfile
renovate d6ccf91ae5
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update golang Docker tag to v1.25
2025-08-13 21:04:39 +00:00

7 lines
155 B
Docker

FROM golang:1.25 as builder
COPY . /castor
RUN cd /castor && CGO_ENABLED=0 go build
FROM scratch
COPY --from=builder /castor/castor castor
CMD ["/castor"]