Files
castor/Dockerfile
renovate 5fdb21326e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update golang Docker tag to v1.24
2025-02-12 19:04:27 +00:00

7 lines
155 B
Docker

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