Spaces:
Sleeping
Sleeping
File size: 264 Bytes
0de7dbf 82edb9e fd9614a 82edb9e fd9614a ebd458c e32f0f5 ebd458c 30b1610 c657796 c920913 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM ghcr.io/nuprl/multipl-e-evaluation:v3.1
# 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"] |