1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-10-10 19:32:04 +00:00
forgejo-runner/Dockerfile

17 lines
391 B
Text
Raw Normal View History

2023-04-30 18:13:11 +02:00
#Build stage
# Switch back to 1.20 instead of 1.20.5 when https://github.com/nektos/act/issues/1908 is resolved
FROM golang:1.20.5-alpine3.18 AS build-env
2023-04-30 18:13:11 +02:00
RUN apk --no-cache add build-base git
COPY . /srv
WORKDIR /srv
RUN make build
2023-05-30 11:47:06 +02:00
FROM alpine:3.18
2023-04-30 18:13:11 +02:00
LABEL maintainer="contact@forgejo.org"
COPY --from=build-env /srv/forgejo-runner /bin/forgejo-runner
ENTRYPOINT ["/bin/forgejo-runner"]