-
Notifications
You must be signed in to change notification settings - Fork 24
/
Dockerfile
97 lines (84 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# bump: yt-dlp /YT_DLP=([\d.-]+)/ https://github.com/yt-dlp/yt-dlp.git|/^\d/|sort
# bump: yt-dlp link "Release notes" https://github.com/yt-dlp/yt-dlp/releases/tag/$LATEST
ARG YT_DLP=2024.12.13
# bump: static-ffmpeg /FFMPEG_VERSION=([\d.-]+)/ docker:mwader/static-ffmpeg|/^\d[0-9.-]*$/|sort
ARG FFMPEG_VERSION=7.1
# bump: golang /GOLANG_VERSION=([\d.]+)/ docker:golang|^1
# bump: golang link "Release notes" https://golang.org/doc/devel/release.html
ARG GOLANG_VERSION=1.23.4
# bump: alpine /ALPINE_VERSION=([\d.]+)/ docker:alpine|^3
# bump: alpine link "Release notes" https://alpinelinux.org/posts/Alpine-$LATEST-released.html
ARG ALPINE_VERSION=3.21.0
FROM mwader/static-ffmpeg:$FFMPEG_VERSION AS ffmpeg
FROM golang:$GOLANG_VERSION AS yt-dlp
ARG YT_DLP
RUN \
curl -L https://github.com/yt-dlp/yt-dlp/releases/download/$YT_DLP/yt-dlp -o /yt-dlp && \
chmod a+x /yt-dlp
FROM golang:$GOLANG_VERSION AS base
WORKDIR /src
RUN \
apt-get update -q && \
apt-get install --no-install-recommends -qy \
python-is-python3 \
python3-pycryptodome
COPY --from=ffmpeg /ffmpeg /ffprobe /usr/local/bin/
COPY --from=yt-dlp /yt-dlp /usr/local/bin/
FROM base AS dev
ARG TARGETARCH
RUN \
apt-get install --no-install-recommends -qy \
less \
jq \
bsdmainutils
FROM base AS builder
COPY go.mod go.sum /src/
COPY cmd /src/cmd
COPY internal /src/internal
COPY ydls.json /src
COPY ydls.json /etc
# hack to conditionally get git commit if possible
COPY Dockerfile .git* /src/.git/
RUN (git describe --always 2>/dev/null || echo nogit) > .GIT_COMMIT
RUN \
go install \
-buildvcs=false \
-installsuffix netgo \
-tags netgo \
-ldflags "-X main.gitCommit=$(cat .GIT_COMMIT)" \
./cmd/ydls
FROM builder AS test
# -buildvcs=false for now
# https://github.com/golang/go/issues/51723
# -race only for amd64 for now, should work on arm64 etc but seems to not work in qemu
RUN \
CONFIG=/src/ydls.json \
TEST_EXTERNAL=1 \
go test -timeout=30m -buildvcs=false -v -cover $([ "$TARGETARCH" = "amd64" ] && echo -race) ./...
RUN \
CONFIG=/etc/ydls.json cmd/ydls/ydls_server_test.sh && \
CONFIG=/etc/ydls.json cmd/ydls/ydls_get_test.sh
FROM alpine:$ALPINE_VERSION
LABEL maintainer="Mattias Wadman [email protected]"
ENV PORT=8080
ENV LISTEN=:$PORT
ENV CONFIG=/etc/ydls.json
RUN apk add --no-cache \
ca-certificates \
tini \
python3 \
py3-pycryptodome
COPY --from=ffmpeg /ffmpeg /ffprobe /usr/local/bin/
COPY --from=yt-dlp /yt-dlp /usr/local/bin/
COPY --from=builder /go/bin/ydls /usr/local/bin/
COPY entrypoint.sh /usr/local/bin
COPY ydls.json $CONFIG
# make sure all binaries work
RUN \
ffmpeg -version && \
ffprobe -version && \
yt-dlp --version && \
ydls -version
USER nobody
EXPOSE $PORT/tcp
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]