Spaces:
Running
Running
FROM ghcr.io/nuprl/multipl-e-evaluation:v3.1 | |
# Install GNAT for Ada language support | |
RUN apt-get update && apt-get install -y gnat && apt-get clean | |
# Override the default entrypoint of the base image | |
ENTRYPOINT [] | |
WORKDIR /app | |
COPY requirements.txt . | |
RUN pip install -r requirements.txt | |
COPY . . | |
EXPOSE 7860 | |
ENV GRADIO_SERVER_NAME="0.0.0.0" | |
CMD ["python3", "app.py"] |