You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to implement a docker image using Okean.
My Dockerfile read as follows:
#Work from an Ubuntu Base Image
FROM ubuntu
RUN apt-get update
RUN apt-get install -y python2.7 python-pip git
RUN apt-get install -y gfortran
RUN pip install --upgrade pip
RUN pip install numpy netCDF4 matplotlib pylatex requests requests
pandas pytz scipy oct2py windrose adjustText
RUN pip install git+https://github.com/martalmeida/okean.git#egg=okean
I can run all of this fine in my native system (Ubuntu 10.04), however the last part always
fails in docker and produces several pages of warnings and errors!
Would be extrememly grateful if someone has resolved this issue.
The text was updated successfully, but these errors were encountered:
I am trying to implement a docker image using Okean.
My Dockerfile read as follows:
#Work from an Ubuntu Base Image
FROM ubuntu
RUN apt-get update
RUN apt-get install -y python2.7 python-pip git
RUN apt-get install -y gfortran
RUN pip install --upgrade pip
RUN pip install numpy netCDF4 matplotlib pylatex requests requests
pandas pytz scipy oct2py windrose adjustText
RUN pip install git+https://github.com/martalmeida/okean.git#egg=okean
I can run all of this fine in my native system (Ubuntu 10.04), however the last part always
fails in docker and produces several pages of warnings and errors!
Would be extrememly grateful if someone has resolved this issue.
The text was updated successfully, but these errors were encountered: