CI and cmake updates

This commit is contained in:
Markus F.X.J. Oberhumer
2023-07-18 07:21:51 +02:00
parent 65cc40bdda
commit 507c31ec14
25 changed files with 181 additions and 54 deletions
@@ -1,6 +1,6 @@
FROM docker.io/library/alpine:3.9
# install qemu 3.1.0-r3 and some utils
# install qemu-3.1.0-r3 and some utils
RUN apk update && apk upgrade && apk add \
bash-completion \
musl-dbg \
@@ -17,10 +17,10 @@ RUN apk update && apk upgrade && apk add \
strace \
&& true
# create default user upx 2000:2000
# create default user upx:upx 2000:2000
RUN adduser upx -u 2000 -D \
&& cd /home/upx && chmod 00700 . \
&& mkdir -p .cache .local/bin src/upx \
&& mkdir -p .cache/tmp .local/bin src/upx \
&& chown -R upx:upx . \
&& true
USER upx