10 lines
141 B
Docker
10 lines
141 B
Docker
FROM fedora:latest
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
RUN dnf -y install rpmdevtools
|
|
|
|
RUN rpmdev-setuptree
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|