11 lines
154 B
Docker
11 lines
154 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["gunicorn", "-b", "0.0.0.0", "main:app"]
|