mirror of
https://github.com/ChristianSch/gitea-release-drafter.git
synced 2025-06-15 16:48:15 +00:00
5 lines
90 B
Docker
5 lines
90 B
Docker
FROM golang:1.19
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN go build -o /bin/app .
|
|
ENTRYPOINT ["/bin/app"] |