We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db183b commit c9f4181Copy full SHA for c9f4181
Dockerfile
@@ -1,25 +1,13 @@
1
-FROM alpine:3.22 AS builder-taglib
2
-WORKDIR /tmp
3
-COPY alpine/taglib/APKBUILD .
4
-RUN apk update && \
5
- apk add --no-cache abuild doas && \
6
- echo "permit nopass root" > /etc/doas.conf && \
7
- abuild-keygen -a -n -i && \
8
- REPODEST=/pkgs abuild -F -r
9
-
10
FROM golang:1.25-alpine3.22 AS builder
11
RUN apk add -U --no-cache \
12
build-base \
13
ca-certificates \
14
git \
15
sqlite \
16
zlib-dev \
+ taglib-dev \
17
go
18
19
-# TODO: delete this block when taglib v2 is on alpine packages
20
-COPY --from=builder-taglib /pkgs/*/*.apk /pkgs/
21
-RUN apk add --no-cache --allow-untrusted /pkgs/*
22
23
WORKDIR /src
24
COPY go.mod .
25
COPY go.sum .
alpine/taglib/APKBUILD
0 commit comments