dabo/Dockerfile

11 lines
403 B
Docker
Raw Normal View History

2023-04-28 17:09:15 +02:00
FROM debian:latest
2023-04-28 17:24:32 +02:00
RUN apt-get update && \
apt-get -y install curl && \
curl https://gitea.ds9.dedyn.io/olli/debian.ansible.docker/raw/branch/main/build-debian-env.sh >build-debian-env.sh && \
bash -ex build-debian-env.sh && \
cd / && \
git clone https://gitea.ds9.dedyn.io/olli/dabo.git && \
chmod 555 /dabo/dabo-bot.sh /dabo/analyze.sh
2023-04-28 17:09:15 +02:00
ENV LANG en_US.utf8
2023-04-28 20:04:46 +02:00
ENTRYPOINT ["/dabo/dabo-bot.sh"]