mirror of
https://framagit.org/fredix/drone-gotify
synced 2026-01-23 02:14:06 +00:00
10 lines
248 B
Docker
10 lines
248 B
Docker
FROM debian:stable
|
|
MAINTAINER fredix@protonmail.com
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates && \
|
|
apt-get clean
|
|
|
|
ADD drone-gotify /bin/
|
|
ENTRYPOINT /bin/drone-gotify
|
|
|