Commit 00712ff 1 parent 5739cf3 commit 00712ff Copy full SHA for 00712ff
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
2
2
3
3
FROM ish-alpine
4
4
LABEL ish.export=appstore-apk.tar.gz
5
5
RUN mkdir /ish && touch /ish/version
6
- RUN echo 296 > /ish/apk-version
6
+ RUN echo 31900 > /ish/apk-version
7
7
COPY apk-motd /etc/motd
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
cd $( dirname " $0 " )
3
3
4
- podman build --platform=linux/386 .
4
+ docker build --platform=linux/386 .
5
5
6
6
roots=(appstore-apk)
7
7
mkdir -p out
8
8
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)
10
10
echo " exporting $root $image "
11
- podman save " $image " -o out/" $root .raw.tar"
11
+ docker save " $image " -o out/" $root .raw.tar"
12
12
./flatten.py out/" $root .raw.tar" | gzip -n > out/" $root .tar.gz"
13
13
rm out/" $root .raw.tar"
14
14
done
You can’t perform that action at this time.
0 commit comments