Add Docker support
Signed-off-by: lzzy12 <jhashivam2020@gmail.com>
This commit is contained in:
parent
35f99c849f
commit
a017f2260b
|
|
@ -0,0 +1,13 @@
|
|||
FROM python:3.8-slim-buster
|
||||
|
||||
RUN mkdir /bot
|
||||
RUN chmod 777 /bot
|
||||
COPY . /bot
|
||||
WORKDIR /bot
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y aria2
|
||||
RUN pip install -r /bot/requirements.txt
|
||||
|
||||
|
||||
CMD ["bash","start.sh"]
|
||||
Loading…
Reference in New Issue