BotX / Dockerfile
imseldrith's picture
Upload 14 files
3f8c4df
raw
history blame contribute delete
117 Bytes
FROM python:3.10.6-slim-buster
WORKDIR .
COPY . .
RUN pip3 install -r requirements.txt
CMD ["python3", "bot.py"]