nakas commited on
Commit
47eb026
·
verified ·
1 Parent(s): 1f2f75f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -11
Dockerfile CHANGED
@@ -3,23 +3,22 @@ FROM python:3.9-slim
3
  WORKDIR /app
4
 
5
  # Install system dependencies
6
- RUN apt-get update && apt-get install -y \
 
7
  build-essential \
8
- git \
9
- && rm -rf /var/lib/apt/lists/*
 
10
 
11
- # Set environment variable for matplotlib
12
- ENV MPLCONFIGDIR=/tmp
13
-
14
- # Copy requirements first for better caching
15
  COPY requirements.txt .
16
  RUN pip install --no-cache-dir -r requirements.txt
17
 
18
- # Copy application file
19
- COPY app.py .
20
 
21
  # Expose port for the application
22
- EXPOSE 7860
23
 
24
  # Command to run the application
25
- CMD ["python", "app.py"]
 
3
  WORKDIR /app
4
 
5
  # Install system dependencies
6
+ RUN apt-get update && \
7
+ apt-get install -y --no-install-recommends \
8
  build-essential \
9
+ git && \
10
+ apt-get clean && \
11
+ rm -rf /var/lib/apt/lists/*
12
 
13
+ # Copy requirements first for better layer caching
 
 
 
14
  COPY requirements.txt .
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
+ # Copy application files
18
+ COPY . .
19
 
20
  # Expose port for the application
21
+ EXPOSE 8501
22
 
23
  # Command to run the application
24
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]