This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
docker-almalinux-base/Dockerfile
Ben Vincent 4926c57c30
All checks were successful
Build / build (pull_request) Successful in 1m23s
feat: migrate to gitea actions
- change from droneci to gitea actions
- update Dockerfile cleanup stage
2024-09-08 02:02:51 +10:00

25 lines
704 B
Docker

# Start with the base AlmaLinux 8.10 image
FROM almalinux:8.10
# Remove existing repos and copy custom repo files into the container
RUN rm -rf /etc/yum.repos.d/*.repo
# Copy from the local context into the container
COPY files/*.repo /etc/yum.repos.d/
# Install ca-certs
RUN curl -k -o internal-ca-certificates.rpm https://git.query.consul/unkin/-/packages/rpm/internal-ca-certificates/20240825-1.el8/files/756 && \
rpm -i internal-ca-certificates.rpm
# Clean and update the repository cache
RUN dnf clean all && \
dnf makecache
# Update the system and install required packages
RUN dnf update -y && \
dnf install -y curl git
# Cleanup
RUN dnf clean all && \
rm -rf /var/cache/dnf