Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 &&
|
|
|
7 |
build-essential \
|
8 |
-
git \
|
9 |
-
|
|
|
10 |
|
11 |
-
#
|
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
|
19 |
-
COPY
|
20 |
|
21 |
# Expose port for the application
|
22 |
-
EXPOSE
|
23 |
|
24 |
# Command to run the application
|
25 |
-
CMD ["
|
|
|
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"]
|