pavithranarul/predict_cardiovascular_diseases
0
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"]