Professor / Dockerfile
azils3's picture
Upload 47 files
bc96bf6 verified
raw
history blame
232 Bytes
FROM python:3.10
RUN apt update && apt upgrade -y
RUN apt install git -y
COPY requirements.txt /requirements.txt
RUN cd /
RUN pip install -U pip && pip install -U -r requirements.txt
WORKDIR /app
COPY . .
CMD ["python", "bot.py"]