jellyfin-web/deployment/Dockerfile.centos

27 lines
626 B
Docker
Raw Normal View History

2022-08-24 15:13:38 -07:00
FROM centos:8
2020-03-23 21:06:35 -07:00
# Docker build arguments
ARG SOURCE_DIR=/jellyfin
ARG ARTIFACT_DIR=/dist
2020-03-23 21:06:35 -07: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 14:09:52 -07:00
&& yum install -y @buildsys-build rpmdevtools git yum-plugins-core autoconf automake glibc-devel gcc-c++ make \
2022-09-29 22:53:04 -07:00
&& curl -fsSL https://rpm.nodesource.com/setup_16.x | bash - \
2021-04-08 14:09:52 -07:00
&& yum install -y nodejs
2020-03-23 21:06:35 -07:00
# Link to build script
RUN ln -sf ${SOURCE_DIR}/deployment/build.centos /build.sh
2020-03-23 21:06:35 -07:00
VOLUME ${SOURCE_DIR}
2020-03-23 21:06:35 -07:00
VOLUME ${ARTIFACT_DIR}
2020-03-23 21:06:35 -07:00
ENTRYPOINT ["/build.sh"]