File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
1
# R base image
2
2
FROM rocker/r-ver:latest
3
3
4
- MAINTAINER "Gordon Grabert"
4
+ LABEL org.opencontainers.image.authors= "Gordon Grabert"
5
5
6
6
# system libraries of general use
7
7
# # install debian packages
@@ -54,16 +54,20 @@ RUN apt-get update
54
54
55
55
RUN apt-get install -y wget && rm -rf /var/lib/apt/lists/*
56
56
57
+
57
58
RUN wget \
58
- https://repo.anaconda.com/miniconda/Miniconda3-latest -Linux-x86_64.sh \
59
+ https://repo.anaconda.com/miniconda/Miniconda3-py310_23.5.0-3 -Linux-x86_64.sh \
59
60
&& mkdir /root/.conda \
60
- && bash Miniconda3-latest -Linux-x86_64.sh -b \
61
- && rm -f Miniconda3-latest -Linux-x86_64.sh
61
+ && bash Miniconda3-py310_23.5.0-3 -Linux-x86_64.sh -b \
62
+ && rm -f Miniconda3-py310_23.5.0-3 -Linux-x86_64.sh
62
63
RUN conda --version
63
64
65
+
66
+
64
67
RUN pip3 install pandas==1.5.2 --upgrade
65
68
RUN conda install -c conda-forge -y mprod-package
66
- # RUN pip3 install numpy==1.23.0 --upgrade
69
+ RUN pip3 install scipy==1.10.0 --upgrade
70
+ RUN pip3 install numpy==1.23.0 --upgrade
67
71
68
72
# run app on container start
69
73
CMD ["Rscript" , "-e" , "MeTEor::meteor()" ]
You can’t perform that action at this time.
0 commit comments