6 lines
110 B
Docker
6 lines
110 B
Docker
FROM python:latest
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY . .
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python", "bot.py"] |