Skip to content

Commit 25b6adb

Browse files
committed
update dockerfile
1 parent 50ec174 commit 25b6adb

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Dockerfile

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#R base image
22
FROM rocker/r-ver:latest
33

4-
MAINTAINER "Gordon Grabert"
4+
LABEL org.opencontainers.image.authors="Gordon Grabert"
55

66
# system libraries of general use
77
## install debian packages
@@ -54,16 +54,20 @@ RUN apt-get update
5454

5555
RUN apt-get install -y wget && rm -rf /var/lib/apt/lists/*
5656

57+
5758
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 \
5960
&& 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
6263
RUN conda --version
6364

65+
66+
6467
RUN pip3 install pandas==1.5.2 --upgrade
6568
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
6771

6872
# run app on container start
6973
CMD ["Rscript", "-e", "MeTEor::meteor()"]

0 commit comments

Comments
 (0)