Skip to content

Commit 3429892

Browse files
committed
Add QEMU and Docker Buildx setup actions
1 parent b334451 commit 3429892

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/build-dev-container.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,13 @@ jobs:
3232
dir: ${{fromJson(needs.list-dir.outputs.dir)}}
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v4
36+
37+
- name: Set up QEMU
38+
uses: docker/setup-qemu-action@v3
39+
40+
- name: Set up Docker Buildx
41+
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226
3642

3743
- name: Login to GitHub Container Registry
3844
uses: docker/login-action@v2

templates/universal/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ RUN chsh -s /usr/bin/fish
66
# install oh-my-fish
77
RUN curl -L https://get.oh-my.fish | fish
88

9-
RUN omf theme agnoster
10-
9+
# reload fish shell
10+
RUN fish -c "omf install agnoster"

0 commit comments

Comments
 (0)