yaleh commited on
Commit
39db02d
·
1 Parent(s): fc89c2d

Updated Dockerfile.

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -38,11 +38,11 @@ RUN poetry install --with=dev
38
 
39
  COPY meta_prompt /app/meta_prompt/
40
  COPY app /app/app/
41
- COPY app.py /app/app.py
42
  RUN poetry install --with=dev
43
 
44
  # Expose the Streamlit default port
45
  EXPOSE 8501
46
 
47
  # Run the Streamlit script when the container launches
48
- CMD ["streamlit", "run", "app.py"]
 
38
 
39
  COPY meta_prompt /app/meta_prompt/
40
  COPY app /app/app/
41
+ # COPY app.py /app/app.py
42
  RUN poetry install --with=dev
43
 
44
  # Expose the Streamlit default port
45
  EXPOSE 8501
46
 
47
  # Run the Streamlit script when the container launches
48
+ CMD ["streamlit", "run", "app/streamlit_tab_app.py"]