11 lines
239 B
Plaintext
11 lines
239 B
Plaintext
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
|
|
COPY ./api /app/api
|
|
|
|
CMD ["uvicorn", "api.app:app", "--host", "0.0.0.0", "--port", "80"] |