supertskone commited on
Commit
e233b8e
·
verified ·
1 Parent(s): 509a5e0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -5
Dockerfile CHANGED
@@ -1,11 +1,23 @@
1
- # Dockerfile
2
- FROM python:3.9-slim
3
 
 
4
  WORKDIR /app
5
 
6
- COPY requirements.txt .
 
 
 
 
 
 
 
 
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
- COPY . .
 
10
 
11
- CMD ["uvicorn", "run:app", "--host", "0.0.0.0", "--port", "8000"]
 
 
1
+ # Use an official Python runtime as a parent image
2
+ FROM python:3.12-slim
3
 
4
+ # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Copy the current directory contents into the container at /app
8
+ COPY . /app
9
+
10
+ # Install system dependencies
11
+ RUN apt-get update && apt-get install -y \
12
+ git \
13
+ && rm -rf /var/lib/apt/lists/*
14
+
15
+ # Install Python dependencies
16
+ RUN pip install --no-cache-dir --upgrade pip
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
19
+ # Expose port 8501 for Streamlit
20
+ EXPOSE 8501
21
 
22
+ # Run the Streamlit app
23
+ CMD ["streamlit", "run", "run.py", "--server.port=8501", "--server.address=0.0.0.0"]