pneumonia_space / Dockerfile
QnxprU69yCNg8XJ
Update Dockerfile to use Python 3.10 with Debian Bullseye (Buster is EOL)
1afdf52
raw
history blame contribute delete
473 Bytes
FROM python:3.10-slim-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y \
ffmpeg libsndfile1 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY inference_service.py .
COPY pneumonia_classifier.joblib .
# Set environment variable for Hugging Face token
# Pass this at runtime: docker run -e HF_TOKEN="your_token" ...
ENV HF_TOKEN=""
EXPOSE 5000
CMD ["python", "app.py"]