ocr/Dockerfile

14 lines
309 B
Docker
Raw Permalink Normal View History

2024-10-24 16:33:38 +00:00
# docker build . --platform linux/amd64 --push -t leafdev.top/ecosystem/ocr:v0.0.5
2024-10-02 10:41:28 +00:00
FROM python:3.12.6
#
WORKDIR /app
2024-10-02 13:20:06 +00:00
COPY requirements.txt /app
2024-10-02 10:41:28 +00:00
RUN pip install --no-cache-dir --upgrade -r requirements.txt
2024-10-02 13:20:06 +00:00
#
COPY . /app
2024-10-02 10:41:28 +00:00
#
CMD ["uvicorn", "main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"]