Revision 9431373b56e6da0c8111f4d165526ac23f68246d authored by Thomas Fischer on 06 July 2021, 10:39:49 UTC, committed by Thomas Fischer on 08 July 2021, 06:29:42 UTC
1 parent 08e6faf
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