worldgenTest / Dockerfile
chahui's picture
Upload 4 files
9de5fe5 verified
raw
history blame contribute delete
312 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt
# Copy application code
COPY app.py .
# Expose port for Gradio
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]