1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-06-27 16:35:58 +00:00

[FORGEJO] build forgejo-runner

This commit is contained in:
Earl Warren 2023-04-30 18:13:11 +02:00
parent 31638583d9
commit e9ba98411e
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
4 changed files with 23 additions and 8 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
#Build stage
FROM golang:1.20-alpine3.17 AS build-env
RUN apk --no-cache add build-base git
COPY . /srv
WORKDIR /srv
RUN make build
FROM alpine:3.17
LABEL maintainer="contact@forgejo.org"
COPY --from=build-env /srv/forgejo-runner /bin/forgejo-runner
ENTRYPOINT ["/bin/forgejo-runner"]