-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
12 lines (8 loc) · 698 Bytes
/
Copy pathDockerfile
File metadata and controls
12 lines (8 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10-slim
WORKDIR /research
COPY . .
LABEL org.opencontainers.image.title="Fine-grained Gaussian Process Forecasting"
LABEL org.opencontainers.image.description="Research code and reproducibility materials for coarse- and fine-grained forecasting using Gaussian process blurring and denoising."
LABEL org.opencontainers.image.source="https://github.com/SepKfr/Fine_grained_Gaussian_Process_Forcasting"
LABEL org.opencontainers.image.documentation="https://github.com/SepKfr/Fine_grained_Gaussian_Process_Forcasting#readme"
CMD ["sh", "-c", "echo 'Fine-grained Gaussian Process Forecasting research code'; echo 'See README.md for data preparation and experiment instructions.'; ls"]