Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM debian:bookworm-20250317
RUN apt-get update
RUN apt-get install -y \
build-essential git checkinstall libssl-dev openssl software-properties-common \
cmake golang-go \
golang-go \
python3.11 python3-pip python3.11-venv libsass-dev libcairo2 libpango-1.0-0 libpangoft2-1.0-0 pangocairo-1.0 pngquant \
sudo

Expand Down
5 changes: 5 additions & 0 deletions .devcontainer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@ does not yet include the build tools.
- C/C++ - For building the project itself
- Docker-in-Docker - For the included integration tests
- Python/MkDocs - for the project site and documentation development


## Credits

- For MkDocs stack - [hitsumabushi845/MkDocs-with-Remote-Containers](https://github.com/hitsumabushi845/MkDocs-with-Remote-Containers)
15 changes: 12 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
// Credits - https://github.com/hitsumabushi845/MkDocs-with-Remote-Containers
// See the README for details
{
"name": "Testcontainers Native Development",
"dockerFile": "Dockerfile",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2.12.4": {
"version": "latest",
"moby": true
},
"ghcr.io/devcontainers-extra/features/cmake:1": {
"version": "3.31.9"
},
"ghcr.io/msclock/features/vcpkg:2": {
"version": "stable",
"vcpkgAutoUpdate": true
}
},
"customizations": {
Expand All @@ -21,7 +28,7 @@
"ms-vscode.cmake-tools",
"ms-vscode.makefile-tools",
"ms-vscode.cpptools-extension-pack",
"ms-azuretools.vscode-docker",
"cschlosser.doxdocgen",
// Golang development
"golang.go",
// Generic site and documentation development
Expand All @@ -32,7 +39,9 @@
"oderwat.indent-rainbow",
"msjsdiag.debugger-for-chrome",
// GitHub Actions
"github.vscode-github-actions"
"github.vscode-github-actions",
// Containers
"ms-azuretools.vscode-docker"
],
},
},
Expand Down