23 lines
674 B
Docker
23 lines
674 B
Docker
# Start with the AlmaLinux 8.10 base image
|
|
FROM git.query.consul/unkin/almalinux8:latest
|
|
|
|
# Clean and update the repository cache
|
|
RUN dnf clean all && \
|
|
dnf makecache
|
|
|
|
# Install nodejs:20 for actions
|
|
RUN dnf module enable -y nodejs:20 && \
|
|
dnf install -y nodejs
|
|
|
|
# Install build tools and dependencies for building RPMs
|
|
RUN dnf groupinstall -y 'Development Tools' && \
|
|
dnf install -y make cmake gcc gcc-c++ rpm rpmdevtools wget tar gzip go
|
|
|
|
# Install nfpm using the RPM package
|
|
RUN dnf install -y https://github.com/goreleaser/nfpm/releases/download/v${NFPM_VERSION}/nfpm-${NFPM_VERSION}-1.x86_64.rpm
|
|
|
|
|
|
# Cleanup
|
|
RUN dnf clean all && \
|
|
rm -rf /var/cache/dnf
|