mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 18:08:17 -07:00
26 lines
530 B
Docker
26 lines
530 B
Docker
FROM debian:11
|
|
|
|
# Docker build arguments
|
|
ARG SOURCE_DIR=/jellyfin
|
|
ARG ARTIFACT_DIR=/dist
|
|
|
|
# Docker run environment
|
|
ENV SOURCE_DIR=/jellyfin
|
|
ENV ARTIFACT_DIR=/dist
|
|
ENV IS_DOCKER=YES
|
|
|
|
# Prepare Debian build environment
|
|
RUN apt-get update \
|
|
&& apt-get install -y mmv curl git \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \
|
|
&& apt-get install -y nodejs
|
|
|
|
# Link to build script
|
|
RUN ln -sf ${SOURCE_DIR}/deployment/build.portable /build.sh
|
|
|
|
VOLUME ${SOURCE_DIR}
|
|
|
|
VOLUME ${ARTIFACT_DIR}
|
|
|
|
ENTRYPOINT ["/build.sh"]
|