17 lines
337 B
Docker
17 lines
337 B
Docker
FROM python:3.11-slim
|
||
|
||
WORKDIR /app
|
||
|
||
COPY requirements.txt .
|
||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends curl \
|
||
&& rm -rf /var/lib/apt/lists/*
|
||
|
||
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
||
COPY . .
|
||
|
||
EXPOSE 8001
|
||
|
||
# Запуск с uvicorn
|
||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8001"] |