Skip to content

Commit

Permalink
make devconatiner buildable from commandline
Browse files Browse the repository at this point in the history
  • Loading branch information
jorg-vr committed Oct 30, 2024
1 parent cf2d028 commit 3966213
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
{
"name": "dodona-tested",

// image: "dodona/dodona-tested:latest",
build: {
dockerfile: "dodona-tested.dockerfile",
context: "."
"build": {
"dockerfile": "dodona-tested.dockerfile",
"context": "."
},
// install dev dependencies
postCreateCommand: "pip install poetry --user; python -m poetry install --with dev"
"postCreateCommand": "pip install poetry --user; python -m poetry install --with dev"
}

0 comments on commit 3966213

Please sign in to comment.