KasmVNC/builder/dockerfile.fedora_thirtyseven.rpm.build

14 lines
297 B
Plaintext
Raw Normal View History

FROM fedora:37
2021-02-19 10:58:38 +01:00
RUN dnf install -y fedora-packager fedora-review
RUN dnf install -y tree vim less
RUN dnf install -y redhat-lsb-core
RUN dnf install -y dnf-plugins-core
COPY fedora/*.spec /tmp
2021-02-19 10:58:38 +01:00
RUN dnf builddep -y /tmp/*.spec
RUN useradd -m docker && echo "docker:docker" | chpasswd
USER docker