meta: add Docker image

This commit is contained in:
ptrcnull 2021-04-01 23:32:47 +02:00
parent 102bb5226b
commit b6c67a5629
3 changed files with 13 additions and 0 deletions

2
.abuild/abuild.conf Normal file
View file

@ -0,0 +1,2 @@
PACKAGER_PRIVKEY="/home/ci/.abuild/ci-6061e1c0.rsa"
REPODEST="/mnt/alpine"

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.abuild/ci-6061e1c0.rsa

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM alpine:3.13
COPY ./build.sh /usr/local/bin/
RUN apk add bash abuild
RUN adduser -D ci
RUN addgroup ci abuild
USER ci
COPY ./.abuild /home/ci/.abuild