leetbot/Dockerfile

15 lines
210 B
Docker
Raw Permalink Normal View History

2019-05-13 19:28:57 +00:00
FROM debian
RUN apt update
RUN apt install -y openssl ca-certificates
2019-05-13 19:28:57 +00:00
ADD target/release/telegram-leetbot /bin/.
RUN mkdir /app/
WORKDIR /app/
2019-05-13 19:28:57 +00:00
ENV TELEGRAM_BOT_TOKEN="invalid"
CMD '/bin/telegram-leetbot'