Fix mutexes in the cacher

This commit is contained in:
2026-02-12 02:28:23 +03:00
parent 2fbc12d770
commit f22111aa43
5 changed files with 36 additions and 11 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM docker.io/alpine AS builder
LABEL maintainer="vladimir@hodakov.me"
COPY . /src
RUN apk add --no-cache go
RUN cd /src && go build ./cmd/faketunes
FROM docker.io/alpine
RUN apk add --no-cache fuse3 ffmpeg
COPY --from=builder /src/faketunes /bin/faketunes
ENTRYPOINT [ "/bin/faketunes" ]