Skip to content

Commit

Permalink
Bump Docker version, bump linuxkit
Browse files Browse the repository at this point in the history
  • Loading branch information
antonym committed Aug 22, 2024
1 parent f0e76cb commit f4f11bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build-kernel:
runs-on: ubuntu-latest
container:
image: docker:26.1.3
image: docker:27.1.2
env:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
needs: build-kernel
runs-on: ubuntu-latest
container:
image: docker:26.1.3
image: docker:27.1.2
env:
DOCKER_DRIVER: overlay2
DOCKER_TLS_CERTDIR: ""
Expand All @@ -57,7 +57,7 @@ jobs:
run: |
apk add git wget docker curl make
mkdir -p out
wget https://github.com/linuxkit/linuxkit/releases/download/v1.2.0/linuxkit-linux-amd64
wget https://github.com/linuxkit/linuxkit/releases/download/v1.5.0/linuxkit-linux-amd64
chmod +x linuxkit-linux-amd64
./linuxkit-linux-amd64 build --format kernel+initrd --name core --dir out core.yml
- name: Generate pre-release
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM docker:26.1.3
FROM docker:27.1.2

RUN \
mkdir /image
COPY . /image/
RUN \
apk add bash git wget docker curl make && \
cd /image && \
wget https://github.com/linuxkit/linuxkit/releases/download/v1.0.1/linuxkit-linux-amd64 && \
wget https://github.com/linuxkit/linuxkit/releases/download/v1.0.1/linuxkit-darwin-amd64 && \
wget https://github.com/linuxkit/linuxkit/releases/download/v1.5.0/linuxkit-linux-amd64 && \
wget https://github.com/linuxkit/linuxkit/releases/download/v1.5.0/linuxkit-darwin-amd64 && \
mkdir -p out/core

0 comments on commit f4f11bd

Please sign in to comment.