Abubakari commited on
Commit
d5b317b
1 Parent(s): 1b16029

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -8,4 +8,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
10
 
 
 
 
11
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
8
 
9
  COPY . .
10
 
11
+ # Expose the port on which the application will run
12
+ EXPOSE 7860
13
+
14
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]