diff --git a/.devcontainer/Containerfile b/.devcontainer/Containerfile new file mode 100644 index 0000000..0490c17 --- /dev/null +++ b/.devcontainer/Containerfile @@ -0,0 +1,5 @@ +FROM ghcr.io/gbraad-redhat/hugo:0.127.0 + +RUN dnf install -y git-core \ + && dnf clean all \ + && rm -rf /var/cache/yum \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c9b8a54 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,13 @@ +{ + "name": "Hugo environment", + "build": { + "dockerfile": "Containerfile" + }, + + "customizations": { + "vscode": { + "extensions": [ + ] + } + } +} \ No newline at end of file