14 lines
253 B
Docker
14 lines
253 B
Docker
# базовый образ
|
|
FROM python:3.12
|
|
|
|
# рабочая директория
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
# зависимости
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY genre/service.py .
|
|
|
|
CMD ["python", "service.py"] |