docker_test / Dockerfile
朱东升
requirements update
e32f0f5
raw
history blame
240 Bytes
FROM ghcr.io/nuprl/multipl-e-evaluation:v3.1
# Override the default entrypoint of the base image
ENTRYPOINT []
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python3", "app.py"]