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