harshnarayan12 commited on
Commit
feca02b
·
verified ·
1 Parent(s): bb74e1a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -1,6 +1,13 @@
 
 
 
 
 
 
 
1
  FROM python:3.10
2
  COPY . /app
3
  WORKDIR /app
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  EXPOSE 8501
6
- CMD streamlit run app.py --server.port 7850
 
1
+ # FROM python:3.10
2
+ # COPY . /app
3
+ # WORKDIR /app
4
+ # RUN pip install --no-cache-dir -r requirements.txt
5
+ # EXPOSE 8501
6
+ # CMD streamlit run app.py --server.port 7850
7
+
8
  FROM python:3.10
9
  COPY . /app
10
  WORKDIR /app
11
  RUN pip install --no-cache-dir -r requirements.txt
12
  EXPOSE 8501
13
+ CMD streamlit run app.py --server.port 7860