Skip to content

Commit

Permalink
fix(dockerfile): install abuild key (#526)
Browse files Browse the repository at this point in the history
Without this, abuild refuses to run correctly.
  • Loading branch information
roobre authored Sep 12, 2024
1 parent bbe16b7 commit fb36dbf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ FROM alpine:3.19 AS builder-taglib
WORKDIR /tmp
COPY alpine/taglib/APKBUILD .
RUN apk update && \
apk add --no-cache abuild && \
abuild-keygen -a -n && \
apk add --no-cache abuild doas && \
echo "permit nopass root" > /etc/doas.conf && \
abuild-keygen -a -n -i && \
REPODEST=/pkgs abuild -F -r

FROM golang:1.21-alpine AS builder
Expand Down

0 comments on commit fb36dbf

Please sign in to comment.