mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-10-04 05:41:58 +08:00
13 lines
297 B
Text
13 lines
297 B
Text
FROM fedora:39
|
|
|
|
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
|
|
RUN dnf builddep -y /tmp/*.spec
|
|
|
|
RUN useradd -m docker && echo "docker:docker" | chpasswd
|
|
|
|
USER docker
|