mgbam commited on
Commit
598f524
Β·
verified Β·
1 Parent(s): 8de903a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -6
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- # ── Dockerfile ─────────────────────────────────────────────────────────
2
  FROM python:3.10-slim
3
 
4
  # Environment variables for Streamlit telemetry and buffering
@@ -42,13 +42,11 @@ RUN python -m spacy download en_core_web_sm
42
  # Set working directory
43
  WORKDIR /app
44
 
45
- # Copy the app code
46
  COPY . /app
47
 
48
  # Expose Streamlit port
49
  EXPOSE 8501
50
 
51
- # Launch the Streamlit application
52
- ENTRYPOINT ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=8501"], llm=llm))
53
- st.subheader("Experimental Protocol")
54
- st.write(doc)
 
1
+ # Dockerfile
2
  FROM python:3.10-slim
3
 
4
  # Environment variables for Streamlit telemetry and buffering
 
42
  # Set working directory
43
  WORKDIR /app
44
 
45
+ # Copy application code
46
  COPY . /app
47
 
48
  # Expose Streamlit port
49
  EXPOSE 8501
50
 
51
+ # Launch Streamlit app
52
+ ENTRYPOINT ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=8501"]