netero89 commited on
Commit
c3f43bd
·
verified ·
1 Parent(s): d341158

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -10,7 +10,6 @@ WORKDIR /code
10
 
11
  COPY ./requirements.txt /code/requirements.txt
12
 
13
- COPY ./app.py /code/app.py
14
 
15
  # Expose the port that Gradio will run on
16
  EXPOSE 7860
@@ -42,6 +41,7 @@ EXPOSE 80
42
 
43
  # Define environment variable
44
  ENV NAME World
 
45
 
46
  # Run app.py when the container launches
47
  CMD ["python", "app.py"]
 
10
 
11
  COPY ./requirements.txt /code/requirements.txt
12
 
 
13
 
14
  # Expose the port that Gradio will run on
15
  EXPOSE 7860
 
41
 
42
  # Define environment variable
43
  ENV NAME World
44
+ COPY ./app.py /code/app.py
45
 
46
  # Run app.py when the container launches
47
  CMD ["python", "app.py"]