Private
Public Access
1
0
Files
Kordophone/core/Dockerfile
James Magahern 65f9222d79
Some checks failed
Core RPM Release / build-core-rpm-release (push) Failing after 5m45s
[core] rpm release ci workflow
2026-04-12 18:27:05 -07:00

26 lines
461 B
Docker

FROM fedora:43
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"]