Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-ssh",
],
}
6 changes: 6 additions & 0 deletions core/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-python.python",
"ms-python.debugpy"
]
}
15 changes: 15 additions & 0 deletions core/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"configurations": [
{
// Use this to debug python code in the remote container
// Requires the "Remote development" extensions to be installed
// as well as the Python debugger extension in the container
"name": "Python Debugger in Remote Container: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"python": "/usr/blueos/venv/bin/python3"
}
]
}
2 changes: 2 additions & 0 deletions core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ COPY configuration/motd /etc/motd
COPY start-blueos-core /usr/bin/start-blueos-core
COPY run-service.sh /usr/bin/run-service

COPY ./.vscode /home/pi/.vscode

# Copy binaries and necessary folders from download-binaries to this stage
COPY --from=download-binaries \
/usr/bin/blueos_startup_update.py \
Expand Down