Private
Public Access
1
0
Files
Kordophone/core/Dockerfile
2025-09-06 19:33:33 -07:00

27 lines
462 B
Docker

FROM fedora:40
RUN dnf update -y && \
dnf install -y \
curl \
gcc \
gcc-c++ \
make \
openssl-devel \
sqlite-devel \
dbus-devel \
systemd-devel \
rpm-build \
&& dnf clean all
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN cargo install cargo-generate-rpm
WORKDIR /workspace
COPY . .
CMD ["make", "rpm"]