sanjaymarathi/compicode-executor
0
1FROM python:3.11-slim2 3# Install g++ and default-jdk4RUN apt-get update && apt-get install -y \5 g++ \6 default-jdk \7 && rm -rf /var/lib/apt/lists/*8 9WORKDIR /app10 11COPY requirements.txt .12RUN pip install --no-cache-dir -r requirements.txt13 14COPY . .15 16CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]17 