birdbot/Dockerfile

9 lines
203 B
Docker
Raw Normal View History

2023-04-03 05:16:36 +02:00
FROM golang:1.20-bullseye
2022-10-27 03:55:23 +02:00
2023-04-02 01:55:19 +02:00
RUN apt update -y
2022-10-27 03:55:23 +02:00
COPY build/birdbot /usr/bin/birdbot
VOLUME /etc/birdbot
2023-04-02 00:25:54 +02:00
ENTRYPOINT ["/usr/bin/birdbot", "-c=/etc/birdbot/birdbot.yaml", "-db=/var/lib/birdbot/birdbot.db"]