-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 02e1f81
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM mcr.microsoft.com/devcontainers/python:3.12-bookworm | ||
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get -y install \ | ||
binaryen \ | ||
emscripten \ | ||
git \ | ||
wabt | ||
|
||
USER vscode:vscode | ||
|
||
# Install Just | ||
RUN curl --proto '=https' --tlsv1.2 -sSfL https://just.systems/install.sh | bash -s -- --to $HOME/.local/bin | ||
RUN $HOME/.local/bin/just --completions zsh > ${HOME}/just.zsh | ||
RUN echo "source ${HOME}/just.zsh" >> ${HOME}/.zshrc | ||
|
||
# Install Wasmtime | ||
RUN curl -sSfL https://wasmtime.dev/install.sh | bash | ||
|
||
# Install Poetry with poetry-plugin-up | ||
RUN curl -sSfL https://install.python-poetry.org | python3 - | ||
RUN $HOME/.local/bin/poetry self add poetry-plugin-up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"terminal.integrated.defaultProfile.linux": "zsh", | ||
"terminal.integrated.profiles.linux": { | ||
"zsh": { | ||
"path": "/bin/zsh" | ||
} | ||
} | ||
}, | ||
"extensions": [ | ||
"dtsvet.vscode-wasm", | ||
"ms-python.python", | ||
"ms-python.black-formatter", | ||
"charliermarsh.ruff", | ||
"ms-azuretools.vscode-docker" | ||
] | ||
} | ||
}, | ||
"onCreateCommand": [ | ||
"zsh", | ||
"./.startup.sh" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
source ~/.zshrc | ||
omz theme set eastwood |