Skip to content

Commit 00712ff

Browse files
committed
Time for alpine 3.19
1 parent 5739cf3 commit 00712ff

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM --platform=linux/386 docker.io/library/alpine:3.14.3 AS ish-alpine
1+
FROM --platform=linux/386 docker.io/library/alpine:3.19.0 AS ish-alpine
22

33
FROM ish-alpine
44
LABEL ish.export=appstore-apk.tar.gz
55
RUN mkdir /ish && touch /ish/version
6-
RUN echo 296 > /ish/apk-version
6+
RUN echo 31900 > /ish/apk-version
77
COPY apk-motd /etc/motd

build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/bin/bash -e
22
cd $(dirname "$0")
33

4-
podman build --platform=linux/386 .
4+
docker build --platform=linux/386 .
55

66
roots=(appstore-apk)
77
mkdir -p out
88
for root in "${roots[@]}"; do
9-
image=$(podman images --filter label=ish.export="$root.tar.gz" --quiet | head -n1)
9+
image=$(docker images --filter label=ish.export="$root.tar.gz" --quiet | head -n1)
1010
echo "exporting $root $image"
11-
podman save "$image" -o out/"$root.raw.tar"
11+
docker save "$image" -o out/"$root.raw.tar"
1212
./flatten.py out/"$root.raw.tar" | gzip -n > out/"$root.tar.gz"
1313
rm out/"$root.raw.tar"
1414
done

0 commit comments

Comments
 (0)