mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
de2bebc089
Build from fedora-33
24 lines
492 B
Docker
24 lines
492 B
Docker
FROM fedora:33
|
|
|
|
# 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 Fedora environment
|
|
RUN dnf update -y \
|
|
&& dnf install -y @buildsys-build rpmdevtools git dnf-plugins-core nodejs autoconf automake glibc-devel
|
|
|
|
# Link to build script
|
|
RUN ln -sf ${SOURCE_DIR}/deployment/build.fedora /build.sh
|
|
|
|
VOLUME ${SOURCE_DIR}
|
|
|
|
VOLUME ${ARTIFACT_DIR}
|
|
|
|
ENTRYPOINT ["/build.sh"]
|