Spaces:
Running
Running
Add monitoring directory to Docker image
Browse files- .dockerignore +3 -1
- Dockerfile +1 -0
.dockerignore
CHANGED
|
@@ -23,7 +23,9 @@ ENV/
|
|
| 23 |
|
| 24 |
# Data and artifacts (mounted as volumes)
|
| 25 |
artifacts/
|
| 26 |
-
monitoring/
|
|
|
|
|
|
|
| 27 |
mlruns/
|
| 28 |
data/
|
| 29 |
|
|
|
|
| 23 |
|
| 24 |
# Data and artifacts (mounted as volumes)
|
| 25 |
artifacts/
|
| 26 |
+
monitoring/predictions/
|
| 27 |
+
monitoring/reports/
|
| 28 |
+
monitoring/drift_reports/
|
| 29 |
mlruns/
|
| 30 |
data/
|
| 31 |
|
Dockerfile
CHANGED
|
@@ -29,6 +29,7 @@ COPY --from=builder /root/.local /root/.local
|
|
| 29 |
COPY src/ ./src/
|
| 30 |
COPY app/ ./app/
|
| 31 |
COPY config/ ./config/
|
|
|
|
| 32 |
COPY setup.py ./
|
| 33 |
|
| 34 |
# Install the mlpipeline package
|
|
|
|
| 29 |
COPY src/ ./src/
|
| 30 |
COPY app/ ./app/
|
| 31 |
COPY config/ ./config/
|
| 32 |
+
COPY monitoring/ ./monitoring/
|
| 33 |
COPY setup.py ./
|
| 34 |
|
| 35 |
# Install the mlpipeline package
|