Docker containers I use in CI workflows, for AMD64, ARM64 (AARCH64) and RISC-V 64
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make Docker user home directory and use that

+4 -1
+4 -1
System.Dockerfile
··· 25 25 RUN apk add --no-cache lua5.4 26 26 RUN ln -s $(which lua5.4) /usr/bin/lua 27 27 28 + WORKDIR $home 29 + 28 30 # Don't run as root 29 - RUN adduser -D ci 31 + RUN adduser -D --home $home ci 30 32 31 33 USER ci 34 + WORKDIR $home