From 413b705d7ac5c5b3cb77fad0d31539f3d9009c70 Mon Sep 17 00:00:00 2001 From: Scott Sowers Date: Thu, 26 Sep 2024 00:11:51 +0000 Subject: [PATCH] Added init scripts to .devcontainer.json --- .devcontainer/devcontainer.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f51e1ea..bbf7fde 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,4 @@ { - "build": { - "dockerfile": "Dockerfile", - "context": ".." - } + "image":"mcr.microsoft.com/devcontainers/universal:2", + "postCreateCommand": "pip install -r requirements.txt && python pop_db.py && python dummy_data.py" } \ No newline at end of file