You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
414 B
8 lines
414 B
FROM python:3.10.4-bullseye
|
|
|
|
# python installation
|
|
RUN apt-get update && apt-get -y install bc bison flex libxaw7 libxaw7-dev libx11-6 libx11-dev libreadline8 libxmu6
|
|
RUN apt-get update && apt-get -y install build-essential libtool gperf libxml2 libxml2-dev libxml-libxml-perl libgd-perl
|
|
RUN apt-get update && apt-get -y install g++ gfortran make cmake libfl-dev libfftw3-dev
|
|
|
|
RUN pip install pytest numpy pandas
|