-
Notifications
You must be signed in to change notification settings - Fork 0
Add devcontainer support #7
base: main
Are you sure you want to change the base?
Changes from all commits
1930f16
f6dbcff
f8829a0
9f6b8ad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
ARG VARIANT="22.04" | ||
FROM ubuntu:${VARIANT} as base | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install required packages as well as setup the prettier bash prompt and a | ||
# Python virtual environment. | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
openssh-server \ | ||
curl \ | ||
wget \ | ||
gnupg \ | ||
git \ | ||
build-essential \ | ||
cmake \ | ||
gdb-multiarch \ | ||
default-jre \ | ||
python3 \ | ||
python3-setuptools \ | ||
python3-pip \ | ||
python3-venv \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& python3 -m venv /tmp/fprime-venv \ | ||
&& . /tmp/fprime-venv/bin/activate \ | ||
&& python3 -m pip install -U --upgrade pip setuptools setuptools_scm wheel \ | ||
&& printf '\n[ -d "%s" ] && . %s/bin/activate\n' /tmp/fprime-venv /tmp/fprime-venv >> ~/.bashrc \ | ||
&& echo 'eval "$(register-python-argcomplete fprime-cli)"' >> ~/.bashrc | ||
|
||
# Install Renode | ||
ARG RENODE_PKG= https://github.com/renode/renode/releases/download/v1.13.3/renode-1.13.3.linux-portable.tar.gz | ||
RUN wget $RENODE_PKG \ | ||
tar -xvzf renode-1.13.3.linux-portable.tar.gz | ||
|
||
ENV RENODE_INSTALL_DIR=/workspaces/renode | ||
ENV PATH=${RENODE_INSTALL_DIR}:${PATH} |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,63 @@ | ||||||||||
# File Name: | ||||||||||
# better_prompt.sh | ||||||||||
# | ||||||||||
# Details: | ||||||||||
# Contains a function to configure the bash prompt for dev work | ||||||||||
|
||||||||||
# ````````````````````````````````````````````````````````````````````````````` | ||||||||||
# Function name: | ||||||||||
# set_bash_prompt() | ||||||||||
# | ||||||||||
# Description: | ||||||||||
# Configures the bash prompt for development. Sets up the CWD, the current | ||||||||||
# git branch, any active Python virtual environment, and the username. | ||||||||||
# | ||||||||||
# [CWD:BRANCH:VENV][USER:HOSTNAME 🚀] _ | ||||||||||
# | ||||||||||
# Example: | ||||||||||
# [/workspaces:master:my_venv][root 🚀] | ||||||||||
# Usage: | ||||||||||
# Copy and paste the following function **and** the export command into | ||||||||||
# your .bashrc file | ||||||||||
# | ||||||||||
function set_bash_prompt() { | ||||||||||
# Color codes for easy prompt building | ||||||||||
COLOR_DIVIDER="\[\e[30;1m\]" | ||||||||||
COLOR_USERNAME="\[\e[34;1m\]" | ||||||||||
COLOR_GITBRANCH="\[\e[33;1m\]" | ||||||||||
COLOR_VENV="\[\e[36;1m\]" | ||||||||||
COLOR_GREEN="\[\e[32;1m\]" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SC2034: COLOR_GREEN appears unused. Verify use (or export if used externally). ℹ️ Expand to see all @sonatype-lift commandsYou can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
Note: When talking to LiftBot, you need to refresh the page to see its response. Help us improve LIFT! (Sonatype LiftBot external survey) Was this a good recommendation for you? Answering this survey will not impact your Lift settings. [ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ] |
||||||||||
COLOR_PATH_OK="\[\e[32;1m\]" | ||||||||||
COLOR_PATH_ERR="\[\e[31;1m\]" | ||||||||||
COLOR_NONE="\[\e[0m\]" | ||||||||||
|
||||||||||
# Change the path color based on return value. | ||||||||||
if test $? -eq 0 ; then | ||||||||||
PATH_COLOR=${COLOR_PATH_OK} | ||||||||||
else | ||||||||||
PATH_COLOR=${COLOR_PATH_ERR} | ||||||||||
fi | ||||||||||
|
||||||||||
# Set the PS1 to be "[workingdirectory:" | ||||||||||
PS1="${COLOR_DIVIDER}[${PATH_COLOR}\w${COLOR_DIVIDER}" | ||||||||||
# Add git branch portion of the prompt, this adds ":branchname" | ||||||||||
if ! git_loc="$(type -p "$git_command_name")" || [ -z "$git_loc" ]; then | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SC2154: git_command_name is referenced but not assigned. ℹ️ Expand to see all @sonatype-lift commandsYou can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
Note: When talking to LiftBot, you need to refresh the page to see its response. Help us improve LIFT! (Sonatype LiftBot external survey) Was this a good recommendation for you? Answering this survey will not impact your Lift settings. [ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ] |
||||||||||
# Git is installed | ||||||||||
if [ -d .git ] || git rev-parse --is-inside-work-tree > /dev/null 2>&1; then | ||||||||||
# Inside of a git repository | ||||||||||
GIT_BRANCH=$(git symbolic-ref --short HEAD) | ||||||||||
PS1="${PS1}:${COLOR_GITBRANCH}${GIT_BRANCH}${COLOR_DIVIDER}" | ||||||||||
fi | ||||||||||
fi | ||||||||||
|
||||||||||
# Add Python VirtualEnv portion of the prompt, this adds ":venvname" | ||||||||||
if ! test -z "$VIRTUAL_ENV" ; then | ||||||||||
PS1="${PS1}:${COLOR_VENV}`basename \"$VIRTUAL_ENV\"`${COLOR_DIVIDER}" | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SC2006: Use $(...) notation instead of legacy backticks ℹ️ Expand to see all @sonatype-lift commandsYou can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
Note: When talking to LiftBot, you need to refresh the page to see its response. Help us improve LIFT! (Sonatype LiftBot external survey) Was this a good recommendation for you? Answering this survey will not impact your Lift settings. [ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ] |
||||||||||
fi | ||||||||||
|
||||||||||
# Close out the prompt, this adds "]\n[username 🚀] " | ||||||||||
PS1="${PS1}]${COLOR_DIVIDER}[${COLOR_USERNAME}\u${COLOR_DIVIDER} 🚀]${COLOR_NONE} " | ||||||||||
} | ||||||||||
|
||||||||||
# Tell Bash to run the above function for every prompt | ||||||||||
export PROMPT_COMMAND=set_bash_prompt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/ubuntu | ||
{ | ||
"name": "F'", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
// Update 'VARIANT' to pick an Ubuntu version: hirsute, focal, bionic | ||
// Use hirsute or bionic on local arm64/Apple Silicon. | ||
"args": { "VARIANT": "22.04" } | ||
}, | ||
|
||
// Provides runtime arguments to the container | ||
"runArgs": [ | ||
"--privileged", | ||
"--network=host", | ||
"--cap-add=SYS_PTRACE", | ||
"--security-opt=seccomp:unconfined", | ||
"--security-opt=apparmor:unconfined" | ||
], | ||
|
||
// Set *default* container specific settings.json values on container create. | ||
"settings": {}, | ||
|
||
|
||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"ms-vscode.cpptools-extension-pack" | ||
], | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "cat .devcontainer/config/better_prompt.sh >> ~/.bashrc; python3 -m pip install -U -r /workspaces/fprime-rtems-poc/fprime/requirements.txt" | ||
|
||
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
// "remoteUser": "vscode" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SC2148: Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.
ℹ️ Expand to see all @sonatype-lift commands
You can reply with the following commands. For example, reply with @sonatype-lift ignoreall to leave out all findings.
@sonatype-lift ignore
@sonatype-lift ignoreall
@sonatype-lift exclude <file|issue|path|tool>
file|issue|path|tool
from Lift findings by updating your config.toml fileNote: When talking to LiftBot, you need to refresh the page to see its response.
Click here to add LiftBot to another repo.
Help us improve LIFT! (Sonatype LiftBot external survey)
Was this a good recommendation for you? Answering this survey will not impact your Lift settings.
[ 🙁 Not relevant ] - [ 😕 Won't fix ] - [ 😑 Not critical, will fix ] - [ 🙂 Critical, will fix ] - [ 😊 Critical, fixing now ]