discord-hellobot / Dockerfile
abhicodes's picture
Update Dockerfile
f2648ec
raw
history blame
185 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"]