ci(build): update docker build
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Simon Vieille 2023-01-03 21:42:45 +01:00
parent ad9a71bf6f
commit 0da6feb217
Signed by: deblan
GPG Key ID: 579388D585F70417
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
FROM golang:1.18
WORKDIR /go/src/woodpecker-email
COPY . .
RUN apt-get update && apt-get -y install ca-certificates tzdata
RUN make build && cp ./woodpecker-email /bin
RUN make build && cp /go/src/woodpecker-email/woodpecker-email /bin
ENTRYPOINT ["/bin/woodpecker-email"]