Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit 4184fc2

Browse files
committed
build image 36.20221001.3.0
Signed-off-by: Sven Pfennig <[email protected]>
1 parent 1eba451 commit 4184fc2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/extend-coreos-qcow2.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Build installer immage
20+
- name: Build installer image
2121
run: docker build . -t $(echo ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | awk '{print tolower($0)}'):image-installer-0.1.0
2222
- name: Extend the base qcow2 image amd64
23-
run: docker run -v $(pwd):/work $(echo ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | awk '{print tolower($0)}'):image-installer-0.1.0 /entrypoint.sh https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20220906.3.2/x86_64/fedora-coreos-36.20220906.3.2-qemu.x86_64.qcow2.xz
23+
run: docker run -v $(pwd):/work $(echo ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | awk '{print tolower($0)}'):image-installer-0.1.0 /entrypoint.sh https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20221001.3.0/x86_64/fedora-coreos-36.20221001.3.0-qemu.x86_64.qcow2.xz
2424
- name: Compress image
2525
run: sudo xz *.qcow2
2626
- uses: actions/upload-artifact@v3

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ COPY install_wasmedge.guestfish /assets/install_wasmedge.guestfish
1818
WORKDIR /work
1919

2020
COPY entrypoint.sh /
21-
CMD /entrypoint.sh https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20220906.3.2/x86_64/fedora-coreos-36.20220906.3.2-qemu.x86_64.qcow2.xz
21+
CMD /entrypoint.sh https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20221001.3.0/x86_64/fedora-coreos-36.20221001.3.0-qemu.x86_64.qcow2.xz

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ If you haven't already done you need to install [podman](https://podman.io/). To
1313
### Docker machine on MacOS / Windows
1414
#### Use patched image on Intel CPU
1515
```bash
16-
podman machine init --image-path https://github.com/KWasm/podman-wasm/releases/download/36.20220906.3.2/fedora-coreos-36.20220906.3.2-qemu.x86_64.qcow2.xz
16+
podman machine init --image-path https://github.com/KWasm/podman-wasm/releases/download/36.20221001.3.0/fedora-coreos-36.20221001.3.0-qemu.x86_64.qcow2.xz
1717
podman machine start
1818
```
1919
#### Use patched image on ARM CPU (M1/M2)
2020
```bash
21-
podman machine init --image-path https://github.com/KWasm/podman-wasm/releases/download/36.20220906.3.2/fedora-coreos-36.20220906.3.2-qemu.aarch64.qcow2.xz
21+
podman machine init --image-path https://github.com/KWasm/podman-wasm/releases/download/36.20221001.3.0/fedora-coreos-36.20221001.3.0-qemu.aarch64.qcow2.xz
2222
podman machine start
2323
```
2424

@@ -42,7 +42,7 @@ Prerequisits:
4242
You'll need [podman](https://podman.io/) and a URL to the qcow2 image you want to modify. The image URL can be found [on the fedora website](https://getfedora.org/en/coreos/download?tab=metal_virtualized). Make sure, that you are yusing a QEMU image (*.qcow2.xz) and that it matches your host architecture (e.g. aarch64 or x86_64).
4343

4444
```bash
45-
export IMAGE_URL=https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20220906.3.2/x86_64/fedora-coreos-36.20220906.3.2-qemu.x86_64.qcow2.xz
45+
export IMAGE_URL=https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/36.20221001.3.0/x86_64/fedora-coreos-36.20221001.3.0-qemu.x86_64.qcow2.xz
4646
export IMAGE_FILENAME=$(basename -s .xz $IMAGE_URL)
4747

4848
# create new instaler image

0 commit comments

Comments
 (0)