From e1dc7d26b10d170e6a068909bf2aba67aa7fce9a Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Mon, 3 Mar 2025 12:19:51 +0000 Subject: [PATCH] aded basic post installtion steps --- .devcontainer/devcontainer.json | 1 + .devcontainer/post-install.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f1d5acc..875a810 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,6 +2,7 @@ "name": "Basic Python", "build": { "dockerfile": "Dockerfile" }, "remoteUser": "vscode", + "postStartCommand": "bash .devcontainer/post-install.sh", "customizations": { "vscode": { "extensions": [ diff --git a/.devcontainer/post-install.sh b/.devcontainer/post-install.sh index 3e2ecb6..c441450 100644 --- a/.devcontainer/post-install.sh +++ b/.devcontainer/post-install.sh @@ -1 +1 @@ -cd etl && post install; \ No newline at end of file +cd etl && poetry install;