enbas/.forgejo/actions/tests/Dockerfile

15 lines
279 B
Docker
Raw Normal View History

2024-08-17 17:21:28 +01:00
# syntax=docker/dockerfile:1
FROM golang:1.23.0 AS builder
RUN git clone https://github.com/magefile/mage \
&& cd mage \
&& git checkout v1.15.0 \
&& go run bootstrap.go
FROM golang:1.23.0-alpine
COPY --from=builder /go/bin/mage /go/bin/mage
ENTRYPOINT ["mage"]