bot/src/Dockerfile

18 lines
400 B
Docker
Raw Normal View History

2022-02-18 20:54:27 +01:00
FROM debian:9
2022-05-27 12:58:41 +02:00
2022-02-18 20:54:27 +01:00
ADD . /app/
WORKDIR /app
2022-05-27 12:58:41 +02:00
RUN apt-get update -yq \
2022-11-19 06:13:47 +01:00
&& apt-get install libffi-dev \
&& apt-get install libnacl-dev \
&& apt-get install python3-dev \
&& apt-get install python3-pip \
&& python3 -m pip install -U discord.py \
&& python3 -m pip install -U asyncio \
&& python3 -m pip install -U requests \
2022-05-27 12:58:41 +02:00
2022-11-19 06:13:47 +01:00
CMD python3 bot.py
2022-02-18 20:54:27 +01:00