1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/deployment/Dockerfile.centos

28 lines
639 B
Text
Raw Normal View History

2020-03-24 00:06:35 -04:00
FROM centos:7
2020-03-24 00:06:35 -04:00
# Docker build arguments
ARG SOURCE_DIR=/jellyfin
ARG ARTIFACT_DIR=/dist
2020-03-24 00:06:35 -04:00
# Docker run environment
ENV SOURCE_DIR=/jellyfin
ENV ARTIFACT_DIR=/dist
ENV IS_DOCKER=YES
# Prepare CentOS environment
RUN yum update -y \
&& yum install -y epel-release \
2021-03-02 00:28:44 +01:00
&& yum install -y @buildsys-build rpmdevtools git yum-plugins-core autoconf automake glibc-devel
2020-03-24 00:06:35 -04:00
2021-03-02 00:28:44 +01:00
# Install recent NodeJS
RUN rpm -i https://rpm.nodesource.com/pub_10.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm
2020-03-24 00:06:35 -04:00
# Link to build script
RUN ln -sf ${SOURCE_DIR}/deployment/build.centos /build.sh
2020-03-24 00:06:35 -04:00
VOLUME ${SOURCE_DIR}
2020-03-24 00:06:35 -04:00
VOLUME ${ARTIFACT_DIR}
2020-03-24 00:06:35 -04:00
ENTRYPOINT ["/build.sh"]