publish release

This commit is contained in:
Earl Warren 2023-03-30 14:25:58 +02:00
parent a06bc05fd1
commit 70d68a491d
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
6 changed files with 195 additions and 1 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"]