glaucoma_backend_2 / Dockerfile
dhruv2842's picture
Upload Dockerfile
21f7838 verified
raw
history blame
444 Bytes
# 1️⃣ Use an official slim Python image
FROM python:3.9-slim
# 2️⃣ Set working directory
WORKDIR /app
# 3️⃣ Copy requirements first
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 4️⃣ Copy all files from the root of your project (app.py, .h5, .json, results dir, etc.)
COPY . .
# 5️⃣ Expose the port
EXPOSE 7860
# 6️⃣ Command to run the app
CMD ["python", "app.py"]