We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbaff34 commit 46454e2Copy full SHA for 46454e2
.devcontainer/Dockerfile
@@ -3,4 +3,6 @@ ARG VARIANT=3.11-bookworm
3
FROM mcr.microsoft.com/vscode/devcontainers/python:${VARIANT}
4
COPY requirements.txt /tmp/pip-tmp/
5
RUN python3 -m pip install --upgrade pip \
6
- && python3 -m pip install --no-cache-dir install ruff -r /tmp/pip-tmp/requirements.txt
+ && python3 -m pip install --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \
7
+ && pipx install pre-commit ruff \
8
+ && pre-commit install
0 commit comments