dabo/Dockerfile

11 lines
485 B
Docker
Raw Permalink 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 && \
2024-03-25 17:07:04 +01:00
bash -ex build-debian-env.sh && \
git clone https://github.com/ccxt/ccxt.git --depth 1
RUN addgroup --system --gid 10000 dabo
RUN adduser --system --disabled-password --disabled-login --gid 10000 --uid 10000 --home /dabo/home dabo
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"]