2023-01-19 14:43:06 +01:00
|
|
|
from debian:stable-slim
|
|
|
|
|
2023-11-24 10:30:58 +01:00
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y python3-all python3-dev python3-pip python3-venv build-essential pylint git && apt-get clean && rm -fr rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install pre-commit --break-system-packages
|
2023-01-19 14:43:06 +01:00
|
|
|
RUN mkdir /tmp/src
|
|
|
|
COPY .pre-commit-config.yaml fake_python_module /tmp/src/
|
|
|
|
RUN cd /tmp/src && git init && git add * && pre-commit autoupdate && pre-commit run --all-files && rm -fr /tmp/src
|