From 4a042752668f4a1b5c4b8afe5a0788084e338331 Mon Sep 17 00:00:00 2001 From: Felix Schurk <75752337+felixschurk@users.noreply.github.com> Date: Sun, 7 Jul 2024 23:04:09 +0200 Subject: [PATCH] add faketime and change to apt-get in devcontainer (#3543) We require faketime to be installed for running the tests, therefore its added. Further for non-interactive usage apt-get is recommended, therefore the change. --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 385cfafb7..84685922f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -10,11 +10,11 @@ RUN if [ "${REINSTALL_CMAKE_VERSION_FROM_SOURCE}" != "none" ]; then \ fi \ && rm -f /tmp/reinstall-cmake.sh -RUN sudo apt update && sudo apt install uuid-dev +RUN sudo apt-get update && sudo apt-get install uuid-dev faketime # [Optional] Uncomment this section to install additional vcpkg ports. # RUN su vscode -c "${VCPKG_ROOT}/vcpkg install " # [Optional] Uncomment this section to install additional packages. # RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ -# && apt-get -y install --no-install-recommends \ No newline at end of file +# && apt-get -y install --no-install-recommends