CoolFace
Apppublic

pavithranarul/predict_cardiovascular_diseases

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes
Dockerfile14 linesDownload Raw Back to root
1FROM python:3.9-slim2 3WORKDIR /app4COPY . .5 6RUN pip install --no-cache-dir -r requirements.txt7 8EXPOSE 78609 10RUN mkdir -p uploads11 12RUN python3 -c "from tensorflow.keras.applications import ResNet50; ResNet50(weights='imagenet', include_top=False)"13 14CMD ["python", "app.py"]