CoolFace
Apppublic

vineyard03/Code-Repair-With-LLMs

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to .docker
1# Use an official Python image2FROM python:3.133 4# Set the working directory5WORKDIR /app6 7# Copy only requirements first (for better caching)8COPY requirements.txt .9 10# Install dependencies11RUN pip install --no-cache-dir -r requirements.txt12 13# Copy the rest of the application code14COPY . .15 16# Expose the port Gradio runs on17EXPOSE 786018 19# Command to run the Gradio app20CMD ["python", "interface.py"]21