13 lines
240 B
Docker
13 lines
240 B
Docker
FROM python:3.11-alpine
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
COPY requirements.txt /
|
|
RUN pip3 install --no-cache-dir -r /requirements.txt
|
|
RUN rm /requirements.txt
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
CMD ["python3", "bot_listen.py"] |