docker-scripts/linux/ecosystem/epicmorg/debian/11-bullseye/main/Dockerfile

254 lines
8.3 KiB
Docker
Raw Normal View History

2022-05-07 01:19:58 +03:00
FROM epicmorg/debian:bullseye-slim
LABEL maintainer="EpicMorg DevTeam, developer@epicm.org"
ARG DEBIAN_FRONTEND=noninteractive
##################################################################
2024-02-10 00:23:00 +03:00
# ARGuments
2022-05-07 01:19:58 +03:00
##################################################################
2024-02-10 00:23:00 +03:00
#configured by dockerfile / .ENV
ARG P4_VERSION
ARG P4_DOWNLOAD_URL
ARG SZ_VERSION
ARG SZ_DOWNLOAD_URL
ARG LZGIT_VERSION
ARG LZGIT_DOWNLOAD_URL
ARG DUMB_INIT_VERSION
ARG DUMB_INIT_DOWNLOAD_URL
ARG GOSU_VER
ARG GOSU_DOWNLOAD_URL
2022-05-07 01:19:58 +03:00
##################################################################
# update lists
##################################################################
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
apt-get update
##################################################################
# installing utils
##################################################################
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
apt-get install -y --allow-unauthenticated \
bzip2 \
cmatrix \
cmatrix-xfont \
cron \
curl \
clzip \
dos2unix \
ffmpeg \
fontconfig \
git \
git-extras \
git-flow \
git-cvs \
git-doc \
git-email \
git-mediawiki \
git-crypt \
git-lfs \
git-ftp \
gnupg \
gnupg2 \
graphicsmagick \
gzip \
htop \
iftop \
iotop \
iperf \
iperf3 \
iputils-ping \
jq \
kmod \
libxml2-dev \
libxml2-utils \
lbzip2 \
libsvn-java \
locales \
lsb-release \
lsof \
lynx \
lzma \
lzip \
lzop \
mc \
mercurial \
nano \
nload \
nmap \
openssl \
perl \
procps \
pbzip2 \
plzip \
p7zip-full \
p7zip-rar \
rsync \
rar \
screenfetch \
smbclient \
subversion \
telnet \
tmux \
tree \
util-linux \
uuid-runtime \
unrar \
xz-utils \
wget \
zip \
tini \
2022-06-02 16:17:43 +03:00
libzip4 \
acl \
aptitude \
sudo \
cvs \
python3-pip \
python3-all \
python-all \
rclone \
logrotate \
2022-06-21 14:24:35 +03:00
subversion-tools \
pev
2022-05-07 01:19:58 +03:00
##################################################################
# installing fs-tools
##################################################################
2022-10-16 13:56:59 +03:00
#RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \
# apt-get install -y --allow-unauthenticated \
# btrfs-progs \
# exfat-utils \
# e2fsprogs \
# f2fs-tools \
# dosfstools \
# hfsutils \
# hfsprogs \
# jfsutils \
# mdadm \
# util-linux \
# cryptsetup \
# lvm2 \
# nilfs-tools \
# ntfs-3g \
# reiser4progs \
# reiserfsprogs \
# udftools \
# xfsprogs \
# xfsdump
2022-05-07 01:19:58 +03:00
2023-01-20 19:05:33 +03:00
##################################################################
# git fresh binary
##################################################################
2024-02-10 00:23:00 +03:00
RUN gpg --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24 && \
gpg --export --output /etc/apt/keyrings/launchpad-git.gpg A1715D88E1DF1F24 && \
2023-01-20 19:05:33 +03:00
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
2024-02-10 00:23:00 +03:00
git
RUN echo "=============================================" && \
echo git $(git --version) && \
echo "============================================="
2023-01-20 19:05:33 +03:00
2022-05-07 01:19:58 +03:00
##################################################################
# git-lfs official binary
##################################################################
2024-02-10 00:23:00 +03:00
RUN curl -fsSL https://packagecloud.io/github/git-lfs/gpgkey | gpg --dearmor > /etc/apt/keyrings/github_git-lfs-archive-keyring.gpg && \
2022-05-07 01:19:58 +03:00
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list
COPY etc/apt/sources.list.d/github_git-lfs.list /etc/apt/sources.list.d/github_git-lfs.list
RUN apt-get update && \
apt-get install -y --allow-unauthenticated \
git \
git-lfs && \
2024-02-10 00:23:00 +03:00
git-lfs install --skip-repo
RUN echo "=============================================" && \
echo git $(git --version) && \
echo git-lfs $(git-lfs --version) && \
echo "============================================="
2022-05-07 01:19:58 +03:00
##################################################################
# gh official binary
##################################################################
2024-02-10 00:23:00 +03:00
RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo gpg --dearmor -o /etc/apt/keyrings/githubcli-archive-keyring.gpg && \
chmod go+r /etc/apt/keyrings/githubcli-archive-keyring.gpg && \
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list && \
2022-09-09 19:41:59 +03:00
apt-get update && \
apt-get install -y --allow-unauthenticated \
2024-02-10 00:23:00 +03:00
gh
RUN echo "=============================================" && \
echo gh $(gh --version) && \
echo "============================================="
2022-05-07 01:19:58 +03:00
##################################################################
# Install p4client
##################################################################
2022-05-09 22:51:22 +03:00
RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue -P /usr/bin ${P4_DOWNLOAD_URL} && \
2022-05-07 01:19:58 +03:00
chmod +x /usr/bin/p4
##################################################################
# Install 7z official binary
##################################################################
2022-05-09 22:51:22 +03:00
RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue -O /tmp/7z.tar.xz ${SZ_DOWNLOAD_URL} && \
2022-05-07 01:19:58 +03:00
mkdir -p /tmp/7z && \
tar -xf /tmp/7z.tar.xz -C /tmp/7z && \
chmod +x /tmp/7z/7zz && \
2024-02-10 00:23:00 +03:00
mv -fv /tmp/7z/7zz /usr/bin/
RUN echo "=============================================" && \
echo 7zz $(7zz | head -4) && \
echo 7z $(7z | head -4) && \
echo "============================================="
2022-05-07 01:19:58 +03:00
##################################################################
# Install LazyGit official binary
##################################################################
2022-05-09 22:51:22 +03:00
RUN wget --no-check-certificate -nv --random-wait --retry-connrefused --continue -O /tmp/lazygit.tar.xz ${LZGIT_DOWNLOAD_URL} && \
2022-05-07 01:19:58 +03:00
mkdir -p /tmp/lazygit && \
tar -zxvf /tmp/lazygit.tar.xz -C /tmp/lazygit && \
chmod +x /tmp/lazygit/lazygit && \
2024-02-10 00:23:00 +03:00
mv -fv /tmp/lazygit/lazygit /usr/bin/
RUN echo "=============================================" && \
echo lazygit $(lazygit --version) && \
echo "============================================="
2022-05-07 01:19:58 +03:00
2022-11-14 22:12:31 +03:00
##################################################################
# dumb init
##################################################################
2024-02-10 00:23:00 +03:00
RUN wget -q --no-check-certificate -c ${DUMB_INIT_DOWNLOAD_URL} --random-wait -O /usr/bin/dumb-init && \
chmod +x /usr/bin/dumb-init
RUN echo "=============================================" && \
echo dumb-init $(dumb-init --version) && \
echo "============================================="
2022-11-14 22:12:31 +03:00
##################################################################
2024-02-10 00:23:00 +03:00
# gosu for easy step-down from root
2022-11-14 22:12:31 +03:00
##################################################################
2024-02-10 00:23:00 +03:00
RUN wget -q --no-check-certificate -c ${GOSU_DOWNLOAD_URL} --random-wait -O /usr/local/bin/gosu && \
chmod +x /usr/local/bin/gosu
RUN echo "=============================================" && \
echo gosu $(gosu --version) && \
echo "============================================="
2022-11-14 22:12:31 +03:00
2022-05-07 01:19:58 +03:00
##################################################################
# Generate ssl key
##################################################################
RUN openssl dhparam -out /etc/ssl/dhparam.pem 4096
##################################################################
# cleanup
##################################################################
RUN apt-get purge policykit-1 -y && \
apt-get clean -y && \
apt-get autoclean -y && \
rm -rfv /var/lib/apt/lists/* && \
rm -rfv /tmp/* && \
rm -rfv /var/cache/apt/archives/*.deb