HHH
This commit is contained in:
parent
066b1ae13c
commit
d639cd39b9
24
Dockerfile
Normal file
24
Dockerfile
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS base
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
icu-libs \
|
||||||
|
zlib-dev \
|
||||||
|
bash \
|
||||||
|
curl \
|
||||||
|
ffmpeg
|
||||||
|
|
||||||
|
COPY . /app
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
|
||||||
|
RUN chmod +x /app/drmdtool
|
||||||
|
RUN chmod +x /app/nre
|
||||||
|
|
||||||
|
ENV BASE_DIR=/app/Videos
|
||||||
|
ENV FORMAT=mkv
|
||||||
|
ENV TEMP_BASE_DIR=/app/tmp
|
||||||
|
ENV NRE_PATH=/app/nre
|
||||||
|
|
||||||
|
ENTRYPOINT ["/app/drmdtool"]
|
||||||
|
|
7
config.toml
Normal file
7
config.toml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
BaseDir = "/app/Videos/"
|
||||||
|
Format = "${OUTPUT_FORMAT:-mkv}"
|
||||||
|
TempBaseDir = "/app/tmp/"
|
||||||
|
|
||||||
|
[N_m3u8DLRE]
|
||||||
|
Path = "/app/nre"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user