db_kyc_project/bot/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

8 lines
111 B
Docker

FROM python:3.11
COPY . /app
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
WORKDIR /app