Skip to content

Commit 4a04275

Browse files
authored
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.
1 parent 847c482 commit 4a04275

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ RUN if [ "${REINSTALL_CMAKE_VERSION_FROM_SOURCE}" != "none" ]; then \
1010
fi \
1111
&& rm -f /tmp/reinstall-cmake.sh
1212

13-
RUN sudo apt update && sudo apt install uuid-dev
13+
RUN sudo apt-get update && sudo apt-get install uuid-dev faketime
1414

1515
# [Optional] Uncomment this section to install additional vcpkg ports.
1616
# RUN su vscode -c "${VCPKG_ROOT}/vcpkg install <your-port-name-here>"
1717

1818
# [Optional] Uncomment this section to install additional packages.
1919
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
20-
# && apt-get -y install --no-install-recommends <your-package-list-here>
20+
# && apt-get -y install --no-install-recommends <your-package-list-here>

0 commit comments

Comments
 (0)