Skip to content

Commit

Permalink
Add devcontainer
Browse files Browse the repository at this point in the history
This can help with quick tests and fixes by users and external contributors.
  • Loading branch information
gbraad authored Nov 27, 2024
1 parent 8a1d173 commit 0619543
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .devcontainer/Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.22.5

USER root

RUN dnf install -y \
sudo git-core \
&& dnf clean all \
&& rm -rf /var/cache/yum
13 changes: 13 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "CRC environment",
"build": {
"dockerfile": "Containerfile"
},

"customizations": {
"vscode": {
"extensions": [
]
}
}
}

0 comments on commit 0619543

Please sign in to comment.