1
0
mirror of https://github.com/ChristianSch/gitea-release-drafter.git synced 2025-06-16 00:58:14 +00:00

5 lines
90 B
Docker

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