14 lines
244 B
Docker
14 lines
244 B
Docker
FROM python:3.14
|
|
WORKDIR /app
|
|
|
|
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
|
|
|
|
COPY . /app/
|
|
|
|
|
|
CMD ["python3", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"] |