11 lines
176 B
Docker
11 lines
176 B
Docker
FROM python:3.8.11-slim
|
|
|
|
ENV DOCKER_KASSOUBOT=True
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY README.md .
|
|
COPY src .
|
|
|
|
CMD ["python", "-u", "./main.py"]
|