From 9568a7307ddaa8b080b06dc31499e3d15189f568 Mon Sep 17 00:00:00 2001 From: Roman Proskin Date: Thu, 20 Feb 2025 23:11:21 +0300 Subject: [PATCH] Add Dockerfile for Astra Linux SE 1.8.1 --- astra/1.8/Dockerfile | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 astra/1.8/Dockerfile diff --git a/astra/1.8/Dockerfile b/astra/1.8/Dockerfile new file mode 100644 index 0000000..92c73f3 --- /dev/null +++ b/astra/1.8/Dockerfile @@ -0,0 +1,40 @@ +FROM registry.astralinux.ru/library/astra/ubi18:1.8.1uu2 +LABEL org.opencontainers.image.authors="Roman Proskin " + +# Fix missing locales +ENV LC_ALL="C.UTF-8" LANG="C.UTF-8" + +# Skip interactive post-install scripts +ENV DEBIAN_FRONTEND=noninteractive + +# Don't install recommends +RUN echo 'apt::install-recommends "false";' > /etc/apt/apt.conf.d/00recommends + +# Enable extra repositories +RUN apt-get update && apt-get install -y --force-yes \ + apt-transport-https \ + curl \ + wget \ + gnupg \ + ca-certificates + +# Install base toolset +RUN apt-get update && apt-get install -y --force-yes \ + sudo \ + git \ + build-essential \ + cmake \ + gdb \ + ccache \ + devscripts \ + debhelper \ + cdbs \ + fakeroot \ + equivs \ + rpm \ + alien \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + +# Enable sudo without password +RUN echo '%adm ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers