From: Adam Dullage Date: Sun, 28 Apr 2024 15:31:55 +0000 (+0100) Subject: Fix devcontainer Dockerfile X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=94a2556af741a6022ae7eed2ade138e26c07c8e3;p=flatnotes.git Fix devcontainer Dockerfile --- diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c06fc21..6699224 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -4,7 +4,7 @@ FROM python:3.11-slim-bullseye RUN pip install --no-cache-dir pipenv # Install curl & git -RUN apt update \ && apt install -y \ +RUN apt update && apt install -y \ curl \ git \ && rm -rf /var/lib/apt/lists/*