db_kyc_project/batcher/Dockerfile
Michail Kostochka b2fb2f9380 Various fixes
- cleaned up Dockefiles
- added healthchecks to docker-compose files
- moved celery & celery-beat to one container
- cleaned up nginx config
2024-12-16 19:13:27 +03:00

12 lines
232 B
Docker

FROM python:3.12
WORKDIR /batcher
COPY ./ /batcher
RUN pip install --no-cache-dir --upgrade -r /batcher/requirements.txt
ENV PYTHONPATH="${PYTHONPATH}:/batcher/app"
CMD uvicorn app.main:app --host 0.0.0.0 --port "${HTTP_PORT}"