File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,8 @@ COPY --from=download-binaries \
123123COPY --from=frontend-builder /home/pi/frontend/dist /home/pi/frontend
124124COPY --from=install-services-and-libs /home/pi/.venv /usr/blueos/venv
125125
126+ COPY .vscode /home/pi/.vscode
127+
126128RUN <<-EOF
127129set -e
128130
Original file line number Diff line number Diff line change 1+ {
2+ "configurations" : [
3+ {
4+ // Use this to debug python code in the remote container
5+ // Requires the "Remote development" extensions to be installed
6+ // as well as the Python debugger extension in the container
7+ "name" : " Python Debugger in Remote Container: Current File" ,
8+ "type" : " debugpy" ,
9+ "request" : " launch" ,
10+ "program" : " ${file}" ,
11+ "console" : " integratedTerminal" ,
12+ "python" : " /usr/blueos/venv/bin/python3"
13+ }
14+ ]
15+ }
You can’t perform that action at this time.
0 commit comments