Spaces:
Runtime error
Runtime error
File size: 331 Bytes
c1a5bbf ef4248d c1a5bbf ef4248d c1a5bbf ef4248d c1a5bbf ef4248d c1a5bbf ef4248d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use a slim Python base image
FROM python:3.9-slim
# Set the working directory
WORKDIR /app
# Copy project files
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the Gradio default port
EXPOSE 7860
# Command to start the Gradio app
CMD ["python", "src/frontend/archive_gui.py"]
|