docker_test / Dockerfile
dongsheng's picture
Update Dockerfile
c920913 verified
raw
history blame
181 Bytes
FROM ghcr.io/nuprl/multipl-e-evaluation:v3.1
# 覆盖基础镜像的默认入口点
ENTRYPOINT []
COPY . /app
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python3", "app.py"]