All checks were successful
continuous-integration/drone/push Build is passing
remove libssl1.1 as it no longer ships in debian
15 lines
210 B
Docker
15 lines
210 B
Docker
FROM debian
|
|
|
|
RUN apt update
|
|
RUN apt install -y openssl ca-certificates
|
|
|
|
ADD target/release/telegram-leetbot /bin/.
|
|
|
|
RUN mkdir /app/
|
|
|
|
WORKDIR /app/
|
|
|
|
ENV TELEGRAM_BOT_TOKEN="invalid"
|
|
|
|
CMD '/bin/telegram-leetbot'
|