-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (25 loc) · 1.08 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM python:3.12-slim
WORKDIR /app
# Устанавливаем зависимости для системы (например, для Poetry и компиляции пакетов)
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
libffi-dev \
libssl-dev \
&& rm -rf /var/lib/apt/lists/*
# Устанавливаем Poetry
ENV POETRY_VERSION=1.6.1
RUN curl -sSL https://install.python-poetry.org | python3 -
# Добавляем Poetry в PATH
ENV PATH="${PATH}:/root/.local/bin"
# Копируем файлы проекта в контейнер
COPY pyproject.toml poetry.lock ./
# Настраиваем Poetry
RUN poetry config virtualenvs.create false
RUN poetry config installer.max-workers 10
# Устанавливаем зависимости проекта
RUN poetry install --no-root --only main
# Копируем оставшиеся файлы проекта в контейнер
COPY . .
# Определяем команду по умолчанию для контейнера
CMD ["poetry", "run", "python", "main.py"]