From 4e89951d950aad54830fd855cbdbe9cf22fe067b Mon Sep 17 00:00:00 2001 From: Michal Czyz Date: Wed, 27 Mar 2024 14:06:39 +0100 Subject: [PATCH] Add auto launch Signed-off-by: Michal Czyz --- .devcontainer/prebuilt/devcontainer.json | 1 + Dockerfile-lxqt | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.devcontainer/prebuilt/devcontainer.json b/.devcontainer/prebuilt/devcontainer.json index 5945dc8..d935d32 100644 --- a/.devcontainer/prebuilt/devcontainer.json +++ b/.devcontainer/prebuilt/devcontainer.json @@ -6,4 +6,5 @@ "label": "desktop" } }, + "postStartCommand": "bash /usr/local/share/desktop-init.sh" } diff --git a/Dockerfile-lxqt b/Dockerfile-lxqt index 9a02235..1c6cd8b 100644 --- a/Dockerfile-lxqt +++ b/Dockerfile-lxqt @@ -9,4 +9,4 @@ RUN bash /usr/local/bin/install-desktop.sh RUN chsh -s /bin/bash ENV DISPLAY=:1 -ENTRYPOINT [ "/usr/local/share/desktop-init.sh" ] + diff --git a/README.md b/README.md index 17ad1c2..531fe23 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ First time Codespace users are encouraged to read the tutorial [creating a codes 3. Right-click on desktop and open Terminal and execute the following commands to run OpenROAD GUI ``` -cd /OpenROAD-flow-scripts/flow +cd ~/OpenROAD-flow-scripts/flow . ../env.sh make make gui_final @@ -58,7 +58,7 @@ Desktop initialization is performed in: ## Developer -OpenROAD Flow Scripts provide a docker image generation script `etc/DockerHelper.sh`, which is used here to build and publish the image to GH registry. +ORFS docker images is now built with available binaries. In CI configuration, you will find steps to reproduce the required docker images. Useful resources: * [Development loop](https://code.visualstudio.com/docs/devcontainers/create-dev-container#_full-configuration-edit-loop)