Spaces:
Sleeping
Sleeping
provide context for .toml
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -41,6 +41,7 @@ COPY visual_rag/ ./visual_rag/
|
|
| 41 |
COPY benchmarks/ ./benchmarks/
|
| 42 |
COPY demo/ ./demo/
|
| 43 |
COPY pyproject.toml ./
|
|
|
|
| 44 |
|
| 45 |
# Install the package in editable mode
|
| 46 |
RUN pip3 install -e .
|
|
@@ -67,4 +68,4 @@ EXPOSE 7860
|
|
| 67 |
RUN python3 -c "import torch; print('CUDA available:', torch.cuda.is_available())" || true
|
| 68 |
|
| 69 |
# Run Streamlit app
|
| 70 |
-
ENTRYPOINT ["streamlit", "run", "demo/app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless", "true"]
|
|
|
|
| 41 |
COPY benchmarks/ ./benchmarks/
|
| 42 |
COPY demo/ ./demo/
|
| 43 |
COPY pyproject.toml ./
|
| 44 |
+
COPY README.md ./
|
| 45 |
|
| 46 |
# Install the package in editable mode
|
| 47 |
RUN pip3 install -e .
|
|
|
|
| 68 |
RUN python3 -c "import torch; print('CUDA available:', torch.cuda.is_available())" || true
|
| 69 |
|
| 70 |
# Run Streamlit app
|
| 71 |
+
ENTRYPOINT ["streamlit", "run", "demo/app.py", "--server.port=7860", "--server.address=0.0.0.0", "--server.headless", "true"]
|