Skip to content
Snippets Groups Projects
Dockerfile 496 B
Newer Older
FROM ubuntu:latest

Oriol Tintó's avatar
Oriol Tintó committed
# Copy recipes and set workdir
COPY dependencies workdir
Oriol Tintó's avatar
Oriol Tintó committed
WORKDIR workdir

# Install some dependencies through apt
RUN export DEBIAN_FRONTEND=noninteractive \
    && apt update \
    && apt install -yq vim make cmake wget git python3 python3-pip python3-venv \
    && apt install -yq swig gcc gfortran pkg-config libzstd-dev \
    && apt install -yq libproj-dev proj-data proj-bin libgeos-dev libeccodes-dev

Oriol Tintó's avatar
Oriol Tintó committed

# Install the filters + libpressio + enstools-compression
RUN make