Skip to content

Commit

Permalink
Added configuration for testenvironment in
Browse files Browse the repository at this point in the history
devcontainer, reverted a change in
get_reverse_dependencies that did not work.
Cleaned up whitespace.
  • Loading branch information
frode-h committed Apr 20, 2024
1 parent 2492a5f commit 9d68959
Show file tree
Hide file tree
Showing 4 changed files with 1,043 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "Debian",
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
"features": {
"ghcr.io/wxw-matt/devcontainer-features/command_runner:0": {},
"ghcr.io/wxw-matt/devcontainer-features/script_runner:0": {},
"ghcr.io/devcontainers/features/python:1": {
"installTools": true,
"version": "os-provided"
}
},
"postCreateCommand":
"sudo apt-get update && sudo apt-get install -y python3 python3-apt && sudo apt -y install cowsay && for file in `dpkg -L cowsay` ; do sudo touch -a -t $(date -d \"7 days ago\" +%Y%m%d%H%M) $file; done"

// other fields...
}
Loading

0 comments on commit 9d68959

Please sign in to comment.