pangeo-data / pangeo-stacks

Curated Docker images for use with Jupyter and Pangeo
https://pangeo-data.github.io/pangeo-stacks/
BSD 3-Clause "New" or "Revised" License
17 stars 20 forks source link

cache_from string substitution #139

Open eddienko opened 4 years ago

eddienko commented 4 years ago

In the file build.py

    if cache_from:
        cmd +=' --cache-from {cache_from}'

should be

    if cache_from:
        cmd += f' --cache-from {cache_from}'