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 Dec 4, 2024
1 parent 641d64e commit 333eef0
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:latest

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 333eef0

Please sign in to comment.