From 4a66efd3a65d9cb919659e0c8d96b1a382b5e7fa Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 25 Mar 2023 09:46:19 +0100 Subject: [PATCH] Update dockerfile --- .devcontainer/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 2a0f0de..a310063 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,5 @@ FROM mcr.microsoft.com/devcontainers/python:3.11-bullseye RUN apt-get update && apt-get upgrade -y -RUN pip install pip-tools invoke \ - && inv sync-dependencies \ - && pre-commit install --install-hooks +RUN pip install pip-tools invoke +RUN invoke sync-dependencies +RUN pre-commit install --install-hooks