You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
897 B
30 lines
897 B
FROM fedora:33
|
|
# Docker build arguments
|
|
ARG SOURCE_DIR=/jellyfin
|
|
ARG ARTIFACT_DIR=/dist
|
|
ARG SDK_VERSION=5.0
|
|
# Docker run environment
|
|
ENV SOURCE_DIR=/jellyfin
|
|
ENV ARTIFACT_DIR=/dist
|
|
ENV IS_DOCKER=YES
|
|
|
|
# Prepare Fedora environment
|
|
RUN dnf update -yq \
|
|
&& dnf install -yq @buildsys-build rpmdevtools git dnf-plugins-core libcurl-devel fontconfig-devel freetype-devel openssl-devel glibc-devel libicu-devel systemd
|
|
|
|
# Install DotNET SDK
|
|
RUN dnf install -yq dotnet-sdk-${SDK_VERSION} dotnet-runtime-${SDK_VERSION}
|
|
|
|
# Create symlinks and directories
|
|
RUN ln -sf ${SOURCE_DIR}/deployment/build.fedora.amd64 /build.sh \
|
|
&& mkdir -p ${SOURCE_DIR}/SPECS \
|
|
&& ln -s ${SOURCE_DIR}/fedora/jellyfin.spec ${SOURCE_DIR}/SPECS/jellyfin.spec \
|
|
&& mkdir -p ${SOURCE_DIR}/SOURCES \
|
|
&& ln -s ${SOURCE_DIR}/fedora ${SOURCE_DIR}/SOURCES
|
|
|
|
VOLUME ${SOURCE_DIR}/
|
|
|
|
VOLUME ${ARTIFACT_DIR}/
|
|
|
|
ENTRYPOINT ["/build.sh"]
|