1
0
mirror of https://github.com/ChristianSch/gitea-release-drafter.git synced 2025-09-01 05:46:16 +00:00

5 lines
90 B
Docker

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