Add devcontainer configuration
Some checks failed
build-docker-imge / Build the docker container (push) Failing after 32s

This commit is contained in:
2024-10-26 08:54:06 +02:00
parent 9d72e3443b
commit 65acea9917
3 changed files with 107 additions and 0 deletions

14
.devcontainer/Dockerfile Normal file
View File

@ -0,0 +1,14 @@
ARG VARIANT=18-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>
# [Optional] Uncomment if you want to install an additional version of node using nvm
# ARG EXTRA_NODE_VERSION=10
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
# [Optional] Uncomment if you want to install more global node modules
# RUN su node -c "npm install -g <your-package-list-here>"