diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 000000000..d8a38c640 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,11 @@ +FROM mcr.microsoft.com/devcontainers/base:ubuntu + +RUN apt-get update + +# Install C++ compiler +RUN apt-get install build-essential + +# Install Ninja build tool +RUN apt-get install ninja-build + +EXPOSE 5050 diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..2db27b516 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "build": { + "dockerfile": "Dockerfile" + }, + "customizations": { + "vscode": { + "extensions": [ + "sumneko.lua" + ] + } + }, + "appPort": 5050 +} \ No newline at end of file