Update Dockerfile
Browse files- Dockerfile +2 -7
Dockerfile
CHANGED
|
@@ -19,17 +19,12 @@ COPY pyproject.toml uv.lock ./
|
|
| 19 |
# Install dependencies using uv with lock file
|
| 20 |
RUN uv sync
|
| 21 |
|
| 22 |
-
#COPY requirements.txt ./
|
| 23 |
-
COPY src/ ./src/
|
| 24 |
-
|
| 25 |
-
#RUN pip3 install -r requirements.txt
|
| 26 |
|
| 27 |
-
|
| 28 |
|
| 29 |
-
#HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 30 |
|
| 31 |
-
#ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
|
| 32 |
|
|
|
|
| 33 |
|
| 34 |
|
| 35 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
|
|
|
| 19 |
# Install dependencies using uv with lock file
|
| 20 |
RUN uv sync
|
| 21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
COPY src/ ./src/
|
| 24 |
|
|
|
|
| 25 |
|
|
|
|
| 26 |
|
| 27 |
+
EXPOSE 8501
|
| 28 |
|
| 29 |
|
| 30 |
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|