discord-hellobot / Dockerfile
abhicodes's picture
Update Dockerfile
92a9890
raw
history blame contribute delete
184 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "./bot.py"]