File: Dockerfile

package info (click to toggle)
tnseq-transit 3.3.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 122,352 kB
  • sloc: python: 14,793; makefile: 143; sh: 49
file content (10 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
From r-base:3.6.1
RUN apt-get update -y && apt-get install -y -f python3 python-dev python3-pip
ADD src/ /src
ADD tests/ /tests
RUN pip3 install pytest 'numpy~=1.16' 'scipy~=1.2' 'matplotlib~=3.0' 'pillow~=6.0' 'statsmodels~=0.9' 'rpy2'
RUN R -e "install.packages('MASS')"
RUN R -e "install.packages('pscl')"

CMD [ "pytest", "./tests" ]