toshiba_2.O / Dockerfile
neerajkalyank's picture
Update Dockerfile
d588ddd verified
raw
history blame
235 Bytes
# Use an official Python slim image
FROM python:3.10-slim
# Install Python dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy the application code
COPY . .
# Run the Gradio app
CMD ["python3", "app.py"]