朱东升 commited on
Commit
ebd458c
·
1 Parent(s): e32f0f5

requirements update2

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -3,8 +3,9 @@ FROM ghcr.io/nuprl/multipl-e-evaluation:v3.1
3
  # Override the default entrypoint of the base image
4
  ENTRYPOINT []
5
  WORKDIR /app
6
- COPY . .
7
  RUN pip install -r requirements.txt
 
8
  EXPOSE 7860
9
  ENV GRADIO_SERVER_NAME="0.0.0.0"
10
  CMD ["python3", "app.py"]
 
3
  # Override the default entrypoint of the base image
4
  ENTRYPOINT []
5
  WORKDIR /app
6
+ COPY requirements.txt .
7
  RUN pip install -r requirements.txt
8
+ COPY . .
9
  EXPOSE 7860
10
  ENV GRADIO_SERVER_NAME="0.0.0.0"
11
  CMD ["python3", "app.py"]