Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -5
Dockerfile
CHANGED
@@ -5,17 +5,16 @@ WORKDIR /app
|
|
5 |
RUN apt-get update && apt-get install -y \
|
6 |
build-essential \
|
7 |
curl \
|
8 |
-
software-properties-common \
|
9 |
git \
|
10 |
&& rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
-
COPY requirements.txt
|
13 |
-
|
14 |
|
15 |
-
|
16 |
|
17 |
EXPOSE 8501
|
18 |
|
19 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
20 |
|
21 |
-
ENTRYPOINT ["streamlit", "run", "
|
|
|
5 |
RUN apt-get update && apt-get install -y \
|
6 |
build-essential \
|
7 |
curl \
|
|
|
8 |
git \
|
9 |
&& rm -rf /var/lib/apt/lists/*
|
10 |
|
11 |
+
COPY requirements.txt .
|
12 |
+
RUN pip install -r requirements.txt
|
13 |
|
14 |
+
COPY . .
|
15 |
|
16 |
EXPOSE 8501
|
17 |
|
18 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
19 |
|
20 |
+
ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|