jellyfin-web/deployment/Dockerfile.centos

27 lines
626 B
Docker
Raw Normal View History

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