This commit is contained in:
parent
6aedfc794f
commit
7efb4fa9bb
2 changed files with 5 additions and 1 deletions
|
@ -93,7 +93,7 @@ docker_manifests:
|
||||||
|
|
||||||
nfpms:
|
nfpms:
|
||||||
- maintainer: Felipe Martin <me@fmartingr.com>
|
- maintainer: Felipe Martin <me@fmartingr.com>
|
||||||
description: SMTP server to forward messages to shoutrrr endpoints
|
description: A chatbot server with customizable commands and triggers
|
||||||
homepage: https://git.nakama.town/fmartingr/butterrobot
|
homepage: https://git.nakama.town/fmartingr/butterrobot
|
||||||
license: AGPL-3.0
|
license: AGPL-3.0
|
||||||
formats:
|
formats:
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
# This file is used directly by the goreleaser build
|
# This file is used directly by the goreleaser build
|
||||||
# It is used to build the final container image
|
# It is used to build the final container image
|
||||||
|
FROM alpine as builder
|
||||||
|
RUN apk --no-cache --update add ca-certificates
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
||||||
COPY /butterrobot /usr/bin/butterrobot
|
COPY /butterrobot /usr/bin/butterrobot
|
||||||
ENTRYPOINT ["/usr/bin/butterrobot"]
|
ENTRYPOINT ["/usr/bin/butterrobot"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue