2024-09-14 23:16:24 +02:00
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine AS base
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
icu-libs \
|
|
|
|
zlib-dev \
|
|
|
|
bash \
|
|
|
|
curl \
|
2024-09-15 00:17:16 +02:00
|
|
|
ffmpeg \
|
|
|
|
bento4
|
2024-09-14 23:16:24 +02:00
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
RUN chmod +x /app/drmdtool
|
|
|
|
RUN chmod +x /app/nre
|
2024-12-30 17:06:07 +01:00
|
|
|
RUN mkdir -p /app/Watched
|
|
|
|
|
2024-09-14 23:16:24 +02:00
|
|
|
|
|
|
|
ENV FORMAT=mkv
|
2024-12-30 17:06:07 +01:00
|
|
|
|
2024-09-14 23:16:24 +02:00
|
|
|
|
|
|
|
ENTRYPOINT ["/app/drmdtool"]
|
|
|
|
|