Skip to content

Commit

Permalink
Adds brew packages
Browse files Browse the repository at this point in the history
  • Loading branch information
topfunky committed May 24, 2024
1 parent 05c298b commit de7cc10
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
28 changes: 26 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,34 @@
{
"name": "Dev Container",
"dockerFile": "Dockerfile",
"settings": {
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"extensions": [],

"extensions": []

},
"docker": {
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14",
"runArgs": [
"--init",
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
}
},
"workspaceMount": "source=${localWorkspaceFolder}/.,target=/workspace,type=bind,consistency=cached",
"workspaceFolder": "/workspace",
"remoteUser": "vscode",
"extensions": [
},
},

"forwardPorts": [],
"postCreateCommand": "echo 'Devcontainer setup complete.'"
}
4 changes: 3 additions & 1 deletion .devcontainer/setup.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env sh

apt-get install -y curl

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

test -d ~/.linuxbrew && eval "$(~/.linuxbrew/bin/brew shellenv)"
Expand All @@ -8,5 +10,5 @@ echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> ~/.bashrc

sudo apt-get install build-essential procps curl file git

brew install gum ffmpeg
brew install gum ffmpeg jq

0 comments on commit de7cc10

Please sign in to comment.