1
1
FROM quay.io/centos/centos:stream
2
2
ARG NOBUILD=0
3
+ LABEL EOL="31 Dec 2021"
3
4
LABEL DERIVEDFROM="RHEL 8 Public Upstream Development Branch"
4
- RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* \
5
+ RUN sed -i 's/^ mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* \
5
6
&& sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* \
6
7
&& dnf makecache \
7
8
&& dnf --assumeyes install epel-release \
@@ -13,19 +14,19 @@ RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* \
13
14
14
15
WORKDIR /root/source/ansible
15
16
COPY . ./
16
- RUN ./mythtv.yml --limit=localhost --extra-vars='{"venv_active": true}' --extra-vars='{"use_old_roles": false}'
17
-
18
- WORKDIR /root/source
19
- RUN git clone https://github.com/MythTV/mythtv.git
20
-
21
- # buld fails because FFmpeg can't find libiec61883 (even though it and
22
- # libiec61883-devel are installed
23
- WORKDIR /root/source/mythtv
24
-
25
- RUN if [ "${NOBUILD}" -eq 1 ]; then \
26
- echo "Not doing a build." ;\
27
- else \
28
- git checkout fixes/35 \
29
- && cmake --preset qt5 \
30
- && VIRTUAL_ENV=/usr/local/dist cmake --build build-qt5 ;\
31
- fi
17
+ # RUN ./mythtv.yml --limit=localhost --extra-vars='{"venv_active": true}' --extra-vars='{"use_old_roles": false}'
18
+ #
19
+ # WORKDIR /root/source
20
+ # RUN git clone https://github.com/MythTV/mythtv.git
21
+ #
22
+ # # buld fails because FFmpeg can't find libiec61883 (even though it and
23
+ # # libiec61883-devel are installed
24
+ # WORKDIR /root/source/mythtv
25
+ #
26
+ # RUN if [ "${NOBUILD}" -eq 1 ]; then \
27
+ # echo "Not doing a build." ;\
28
+ # else \
29
+ # git checkout fixes/35 \
30
+ # && cmake --preset qt5 \
31
+ # && VIRTUAL_ENV=/usr/local/dist cmake --build build-qt5 ;\
32
+ # fi
0 commit comments