mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-21 15:43:28 +01:00
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
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
|