diff options
| author | Andrew Rabert <ar@nullsum.net> | 2019-03-01 00:17:46 -0500 |
|---|---|---|
| committer | Andrew Rabert <ar@nullsum.net> | 2019-03-01 00:17:46 -0500 |
| commit | 27f9981142b4a75ceaff3a4b0f13f40b7d9467d6 (patch) | |
| tree | ab7724c71bcafad56828b9272f5284c995be98e6 /Dockerfile.arm | |
| parent | 58e5931a3287f2f50a58bcc1e2991375fc06c93f (diff) | |
Treat jellyfin-web as just another dependency for Docker builds
Diffstat (limited to 'Dockerfile.arm')
| -rw-r--r-- | Dockerfile.arm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile.arm b/Dockerfile.arm index d220763a2..42f0354a3 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -28,6 +28,12 @@ RUN apt-get update \ && mkdir -p /cache /config /media \ && chmod 777 /cache /config /media COPY --from=builder /jellyfin /jellyfin + +ARG JELLYFIN_WEB_VERSION=10.2.2 +RUN curl -L https://github.com/jellyfin/jellyfin-web/archive/v${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \ + && rm -rf /jellyfin/jellyfin-web \ + && mv jellyfin-web-${JELLYFIN_WEB_VERSION} /jellyfin/jellyfin-web + EXPOSE 8096 VOLUME /cache /config /media ENTRYPOINT dotnet /jellyfin/jellyfin.dll \ |
