Revision 5b60c866971edc2a6b0ddaacb8e469e0fe0d1938 authored by Dmitry Yu. Naumov on 09 July 2021, 12:56:44 UTC, committed by Dmitry Yu. Naumov on 09 July 2021, 12:56:44 UTC
Material lib adsorbtion code improvements

See merge request ogs/ogs!3700
2 parent s f048691 + cbb8f2c
Raw File
Dockerfile.pre-commit
FROM python:slim

RUN pip install pre-commit==2.7.1
CMD ["bash"]
RUN apt-get update \
    && apt-get install -y --no-install-recommends git gcc g++ \
    && rm -rf /var/lib/apt/lists/*
back to top