1
0
mirror of https://github.com/ChristianSch/gitea-release-drafter.git synced 2025-06-15 00:28:13 +00:00

5 lines
90 B
Docker

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