Varshith1909 commited on
Commit
d54aff7
Β·
1 Parent(s): de29593

Docker changes

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -1,10 +1,8 @@
1
  FROM python:3.11
2
 
3
  WORKDIR /app
4
-
5
  COPY requirements.txt .
6
  RUN pip install --no-cache-dir -r requirements.txt
7
-
8
  COPY . .
9
-
10
  CMD ["python", "app.py"]
 
1
  FROM python:3.11
2
 
3
  WORKDIR /app
 
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
 
6
  COPY . .
7
+ EXPOSE 7860
8
  CMD ["python", "app.py"]