db_kyc_project/batcher/Dockerfile

12 lines
232 B
Docker
Raw Normal View History

2024-12-12 22:12:00 +03:00
FROM python:3.12
WORKDIR /batcher
COPY ./ /batcher
2024-12-12 22:12:00 +03:00
RUN pip install --no-cache-dir --upgrade -r /batcher/requirements.txt
2024-12-13 16:45:21 +03:00
ENV PYTHONPATH="${PYTHONPATH}:/batcher/app"
CMD uvicorn app.main:app --host 0.0.0.0 --port "${HTTP_PORT}"