| 1234567891011121314151617181920212223242526272829303132 |
- # Build from repository root: docker compose build backend
- FROM python:3.11-bookworm
- ENV PYTHONDONTWRITEBYTECODE=1 \
- PYTHONUNBUFFERED=1 \
- PIP_NO_CACHE_DIR=1 \
- FLASK_RUN_HOST=0.0.0.0 \
- FLASK_RUN_PORT=5000
- WORKDIR /app
- RUN apt-get update && apt-get install -y --no-install-recommends \
- default-mysql-client \
- ffmpeg \
- libglib2.0-0 \
- libgl1 \
- libgomp1 \
- libsm6 \
- libxext6 \
- libxrender1 \
- && rm -rf /var/lib/apt/lists/*
- COPY BridgeDiseaseBackend-main/requirements.txt .
- RUN pip install --upgrade pip && pip install -r requirements.txt
- COPY BridgeDiseaseBackend-main/ /app/
- COPY docker/backend/bootstrap.py /app/docker_bootstrap.py
- COPY docker/backend/entrypoint.sh /entrypoint.sh
- RUN sed -i 's/\r$//' /entrypoint.sh && chmod +x /entrypoint.sh
- EXPOSE 5000
- ENTRYPOINT ["/entrypoint.sh"]
|