mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-22 03:41:56 +00:00
Refs #6145 This bundles aarch64 and x86_64 RPMs in CI and CD. We'll need a 2nd PR to add everything to the changelog and knowledge base, after the first release with RPMs is cut.
9 lines
221 B
Plaintext
9 lines
221 B
Plaintext
# Dockerfile for building RPM packages for CentOS
|
|
# CentOS Stream 9
|
|
FROM quay.io/centos/centos:stream9
|
|
|
|
RUN yum install -y rpm-build systemd-rpm-macros && yum clean all
|
|
|
|
RUN mkdir -p /root/rpmbuild
|
|
WORKDIR /root/rpmbuild
|