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

27 lines
626 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-04-08 23:09:52 +02:00
&& yum install -y @buildsys-build rpmdevtools git yum-plugins-core autoconf automake glibc-devel gcc-c++ make \
&& curl -fsSL https://rpm.nodesource.com/setup_12.x | bash - \
&& yum install -y nodejs
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"]