From ff1d197799929c2f2d585d4d289085a339c56711 Mon Sep 17 00:00:00 2001 From: Sander Date: Fri, 21 Feb 2025 20:54:48 +0400 Subject: [PATCH] devcontainer: bring back apt update --- devcontainer/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/devcontainer/Dockerfile b/devcontainer/Dockerfile index d73386dab..c15d51978 100644 --- a/devcontainer/Dockerfile +++ b/devcontainer/Dockerfile @@ -7,8 +7,9 @@ ARG NIX_INSTALL_SCRIPT=https://nixos.org/nix/install COPY --chmod=0755 nix-entrypoint.sh /nix-entrypoint.sh COPY nix.conf /tmp/nix.conf -# Install dependencies -RUN apt-get install -y bash curl git sudo xz-utils +# Update and install dependencies +RUN apt-get update && \ + apt-get install -y bash curl git sudo xz-utils # Install Nix # NOTE: The extra conf file does not apply to the install script itself.