-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
56 lines (51 loc) · 1.37 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# docker buildx build --platform linux/arm64,linux/amd64 --tag ghcr.io/juho05/crossonic-server:latest --push .
FROM alpine:3.20 AS builder-taglib
WORKDIR /tmp
COPY alpine/taglib/APKBUILD .
RUN apk update && \
apk add --no-cache sudo abuild && \
abuild-keygen -a -n -i && \
REPODEST=/pkgs abuild -F -r
FROM golang:alpine3.20 AS builder
RUN apk add -U --no-cache \
build-base \
ca-certificates \
git \
zlib-dev
# TODO: delete this block when taglib v2 is on alpine packages
COPY --from=builder-taglib /pkgs/*/*.apk /pkgs/
RUN apk add --no-cache --allow-untrusted /pkgs/*
WORKDIR /src
COPY go.mod .
COPY go.sum .
RUN go mod download
COPY . .
RUN GOOS=linux go build -o crossonic-server ./cmd/server
RUN GOOS=linux go build -o crossonic-admin ./cmd/admin
FROM alpine:3.20
LABEL org.opencontainers.image.source=https://github.com/juho05/crossonic-server
RUN apk add -U --no-cache \
ffmpeg \
ca-certificates \
tzdata \
tini \
shared-mime-info
COPY --from=builder \
/usr/lib/libgcc_s.so.1 \
/usr/lib/libstdc++.so.6 \
/usr/lib/libtag.so.2 \
/usr/lib/
COPY --from=builder \
/src/crossonic-server \
/src/crossonic-admin \
/bin/
EXPOSE 8080
ENV TZ=""
ENV MUSIC_DIR=/music
ENV DATA_DIR=/data
ENV CACHE_DIR=/cache
ENV LISTEN_ADDR=0.0.0.0:8080
ENV AUTO_MIGRATE=true
ENV LOG_LEVEL=4
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["crossonic-server"]