Skip to content
Snippets Groups Projects
Select Git revision
  • ddf29111df68ee6ecea96342c86eb2853d1d3be0
  • bing_issues#190_tf2
  • bing_tf2_convert
  • bing_issue#189_train_modular
  • simon_#172_integrate_weatherbench
  • develop
  • bing_issue#188_restructure_ambs
  • yan_issue#100_extract_prcp_data
  • bing_issue#170_data_preprocess_training_tf1
  • Gong2022_temperature_forecasts
  • bing_issue#186_clean_GMD1_tag
  • yan_issue#179_integrate_GZAWS_data_onfly
  • bing_issue#178_runscript_bug_postprocess
  • michael_issue#187_bugfix_setup_runscript_template
  • bing_issue#180_bugs_postprpocess_meta_postprocess
  • yan_issue#177_repo_for_CLGAN_gmd
  • bing_issue#176_integrate_weather_bench
  • michael_issue#181_eval_era5_forecasts
  • michael_issue#182_eval_subdomain
  • michael_issue#119_warmup_Horovod
  • bing_issue#160_test_zam347
  • ambs_v1
  • ambs_gmd_nowcasting_v1.0
  • GMD1
  • modular_booster_20210203
  • new_structure_20201004_v1.0
  • old_structure_20200930
27 results

Dockerfile_base

Blame
  • Dockerfile_base 1.16 KiB
    se node ----
    FROM opensuse/leap:latest AS base
    MAINTAINER Lukas Leufen <l.leufen@fz-juelich.de>
    
    # install git
    RUN zypper --non-interactive install git
    
    # install python3
    RUN zypper --non-interactive install python3 python3-devel
    
    # install pip
    RUN zypper --non-interactive install python3-pip
    
    # upgrade pip
    RUN pip install --upgrade pip
    
    # install curl
    RUN zypper --non-interactive install curl
    
    # install make
    RUN zypper --non-interactive install make
    
    # install gcc
    RUN zypper --non-interactive install gcc-c++
    
    # ---- test node ----
    FROM base AS test
    
    # install pytest
    RUN pip install pytest pytest-html pytest-lazy-fixture
    
    # ---- coverage node ----
    FROM test AS coverage
    
    # install pytest coverage
    RUN pip install pytest-cov
    
    
    # ---- docs node ----
    FROM base AS docs
    
    # install sphinx
    RUN pip install sphinx
    
    # ---- django version ----
    FROM base AS django
    
    # install django requirements
    RUN zypper --non-interactive install binutils libproj-devel gdal-devel
    
    # install cartopy
    RUN zypper --non-interactive install proj
    RUN pip install cython numpy==1.15.4 pyshp six pyproj shapely matplotlib pillow
    RUN zypper --non-interactive install geos-devel
    RUN pip install cartopy==0.16.0