Skip to content

Commit 2fddd84

Browse files
authored
Merge pull request #142 from jandubois/bump-3.23
Bump Alpine version 3.22.2 → 3.23.0
2 parents da36852 + ee6ce35 commit 2fddd84

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
ALPINE_VERSION: 3.22.2
11+
ALPINE_VERSION: 3.23.0
1212
DOCKER_BUILDKIT: 1
1313

1414
jobs:

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ RUN abuild-keygen -i -a -n
1919
RUN apk update
2020

2121
ADD src/aports /home/build/aports
22+
# Remove --no-chown which is deprecated in apk 3.0 as alias for --usermode (disallowed as root)
23+
RUN sed -i 's/--initdb --no-chown/--initdb/' /home/build/aports/scripts/mkimage.sh
2224
WORKDIR /home/build/aports/scripts
2325
ENTRYPOINT ["sh", "./mkimage.sh"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ALPINE_VERSION ?= 3.22.2
1+
ALPINE_VERSION ?= 3.23.0
22
REPO_VERSION ?= $(shell echo "$(ALPINE_VERSION)" | sed -E 's/^([0-9]+\.[0-9]+).*/v\1/')
33
GIT_TAG ?= $(shell echo "v$(ALPINE_VERSION)" | sed 's/^vedge$$/origin\/master/')
44
BUILD_ID ?= $(shell git describe --tags)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,33 +47,33 @@ Note that this repo includes the [Alpine aports](https://github.com/alpinelinux/
4747
git submodule update --init
4848
```
4949

50-
The examples show the default values for `ALPINE_VERSION=3.22.2 EDITION=std`, `ARCH` defaults to the OS architecture `uname -m`.
50+
The examples show the default values for `ALPINE_VERSION=3.23.0 EDITION=std`, `ARCH` defaults to the OS architecture `uname -m`.
5151
The options need to be specified only to select non-default setting.
5252

5353
### Build the builder
5454

5555
The ISO builder will be created inside a docker image. You can specify the Alpine version used to create it:
5656

5757
```
58-
make mkimage ALPINE_VERSION=3.22.2
58+
make mkimage ALPINE_VERSION=3.23.0
5959
```
6060

6161
### Build the ISO
6262

6363
This docker image can then be used to create ISO images that will be stored under `./iso`:
6464

6565
```
66-
make iso ALPINE_VERSION=3.22.2 EDITION=std
66+
make iso ALPINE_VERSION=3.23.0 EDITION=std
6767
```
6868

6969
### Run the ISO with qemu
7070

7171
```
72-
make run ALPINE_VERSION=3.22.2 EDITION=std
72+
make run ALPINE_VERSION=3.23.0 EDITION=std
7373
```
7474

7575
### Run the ISO with Lima
7676

7777
```
78-
make lima ALPINE_VERSION=3.22.2 EDITION=std
78+
make lima ALPINE_VERSION=3.23.0 EDITION=std
7979
```

build.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ ${DOCKER} run --rm \
2727
--tag "${TAG}" \
2828
--outdir /iso \
2929
--arch "${ARCH}" \
30-
--repository "/home/build/packages/lima" \
3130
--repository "http://dl-cdn.alpinelinux.org/alpine/${REPO_VERSION}/main" \
3231
--repository "http://dl-cdn.alpinelinux.org/alpine/${REPO_VERSION}/community" \
3332
--profile lima

src/aports

Submodule aports updated 9782 files

0 commit comments

Comments
 (0)