14 lines
221 B
Docker
14 lines
221 B
Docker
|
# syntax=docker/dockerfile:1
|
||
|
|
||
|
FROM python:3.8-slim-buster
|
||
|
|
||
|
RUN mkdir app
|
||
|
COPY requirements.txt /app
|
||
|
COPY discordbot.py /app
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
CMD ["python", "discordbot.py"]
|