10 lines
172 B
Text
10 lines
172 B
Text
|
FROM fedora:41
|
||
|
|
||
|
RUN dnf update -y && dnf upgrade -y; \
|
||
|
dnf install -y mock rpmdevtools
|
||
|
|
||
|
COPY entrypoint.sh /
|
||
|
RUN chmod +x /entrypoint.sh
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|
||
|
|