1
0
mirror of https://github.com/ChristianSch/gitea-release-drafter.git synced 2026-07-21 17:27:04 +00:00
Files
2023-03-05 22:57:39 +01:00

5 lines
90 B
Docker

FROM golang:1.19
WORKDIR /src
COPY . .
RUN go build -o /bin/app .
ENTRYPOINT ["/bin/app"]