From e7861954d352944cce2289a80c459c1efc53eace Mon Sep 17 00:00:00 2001 From: Marco Rubeck Date: Tue, 25 Jul 2023 19:25:21 +0200 Subject: [PATCH] Update Dockerfile --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6cb2ce113..8b9bc8c93 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,7 +8,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/python:${VARIANT} # [Optional] If your pip requirements rarely change, uncomment this section to add them to the image. COPY requirements.txt /tmp/pip-tmp/ -RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt +RUN pip3 --disable-pip-version-check --no-cache-dir install ruff -r /tmp/pip-tmp/requirements.txt # [Optional] Uncomment this section to install additional OS packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \