added Dockerfile and devcontainer with extensions and poetry

This commit is contained in:
Jun-te Kim 2025-03-03 11:58:20 +00:00
parent 5d286ad70f
commit 6cae3bfab3
2 changed files with 7 additions and 1 deletions

View file

@ -9,3 +9,6 @@ RUN apt update \
&& useradd -m -s /usr/bin/bash ${USER} \
&& echo "${USER} ALL=(ALL) NOPASSWD: ALL" >/etc/sudoers.d/${USER} \
&& chmod 0440 /etc/sudoers.d/${USER}
# Install Poetry
RUN pip install poetry

View file

@ -4,7 +4,10 @@
"remoteUser": "vscode",
"customizations": {
"vscode": {
"extensions": ["ms-python.python"]
"extensions": [
"ms-python.python",
"ms-azuretools.vscode-docker"
]
}
}
}