We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32a79b0 commit 7fa42d4Copy full SHA for 7fa42d4
.github/workflows/build.yaml
@@ -55,7 +55,12 @@ jobs:
55
with:
56
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
57
- name: Build image
58
- run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
+ run: |
59
+ devcontainer build \
60
+ --workspace-folder . \
61
+ --config .devcontainer/vm/devcontainer.json \
62
+ --image-name $IMAGE_NAME
63
+ # run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
64
- name: Push image
65
run: |
66
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
0 commit comments