service_man/docker/bot/Dockerfile

26 lines
390 B
Docker
Raw Permalink Normal View History

2024-03-04 07:12:29 +03:00
FROM python:3.10-slim
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
RUN pip install --upgrade pip
RUN pip install poetry
RUN poetry config virtualenvs.create false
RUN mkdir -p /usr/src/service_man
WORKDIR /usr/src/service_man
COPY ./poetry.lock .
COPY ./pyproject.toml .
COPY ./config .
RUN poetry install --only bot --no-root
ENV CONFIG_PATH='./config/bot_config.toml'