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