2022-03-14 05:09:20 -05:00
{ % set prefix = DEFAULT_CONTAINER_REGISTRY %}
2020-04-28 17:57:13 -05:00
{ % from "dockers/dockerfile-macros.j2" import install_debian_packages, install_python_wheels, copy_files %}
2022-07-21 16:15:16 -05:00
{ % if CONFIGURED_ARCH = = "armhf" and ( MULTIARCH_QEMU_ENVIRON = = "y" or CROSS_BUILD_ENVIRON = = "y" ) %}
2022-03-14 05:09:20 -05:00
FROM {{ prefix }}multiarch/debian-debootstrap:armhf-buster
2022-07-21 16:15:16 -05:00
{ % elif CONFIGURED_ARCH = = "arm64" and ( MULTIARCH_QEMU_ENVIRON = = "y" or CROSS_BUILD_ENVIRON = = "y" ) %}
2022-03-14 05:09:20 -05:00
FROM {{ prefix }}multiarch/debian-debootstrap:arm64-buster
2020-04-28 17:57:13 -05:00
{ % else %}
2022-03-14 05:09:20 -05:00
FROM {{ prefix }}{{DOCKER_BASE_ARCH}}/debian:buster
2020-04-28 17:57:13 -05:00
{ % endif %}
# Clean documentation in FROM image
RUN find /usr/share/doc -depth \( -type f -o -type l \) ! -name copyright | xargs rm || true
# Clean doc directories that are empty or only contain empty directories
RUN while [ -n " $( find /usr/share/doc -depth -type d -empty -print -exec rmdir { } +) " ] ; do :; done && \
rm -rf \
/usr/share/man/* \
/usr/share/groff/* \
/usr/share/info/* \
/usr/share/lintian/* \
/usr/share/linda/* \
/var/cache/man/* \
/usr/share/locale/*
# Make apt-get non-interactive
ENV DEBIAN_FRONTEND = noninteractive
# Configure data sources for apt/dpkg
COPY [ "dpkg_01_drop" , "/etc/dpkg/dpkg.cfg.d/01_drop" ]
2022-11-08 18:09:53 -06:00
COPY [ "sources.list.{{ CONFIGURED_ARCH }}" , "/etc/apt/sources.list" ]
2020-04-28 17:57:13 -05:00
COPY [ "no_install_recommend_suggest" , "/etc/apt/apt.conf.d" ]
COPY [ "no-check-valid-until" , "/etc/apt/apt.conf.d" ]
# Update apt cache and
# pre-install fundamental packages
RUN apt-get update && \
apt-get -y install \
2020-09-08 21:30:14 -05:00
curl \
2020-04-28 17:57:13 -05:00
less \
perl \
procps \
2020-05-17 06:26:50 -05:00
python3 \
2020-12-25 23:29:25 -06:00
python3-distutils \
2020-05-17 06:26:50 -05:00
python3-pip \
2020-04-28 17:57:13 -05:00
rsyslog \
vim-tiny \
2020-09-08 21:30:14 -05:00
# Install dependencies of redis-tools
libatomic1 \
libjemalloc2 \
liblua5.1-0 \
lua-bitop \
lua-cjson \
2020-04-28 17:57:13 -05:00
# common dependencies
libdaemon0 \
libdbus-1-3 \
2020-05-21 02:22:19 -05:00
libjansson4 \
2020-04-28 17:57:13 -05:00
# ip and ifconfig utility missing in docker for arm arch
iproute2 \
2020-05-21 02:22:19 -05:00
net-tools \
2020-07-08 12:27:05 -05:00
# for processing/handling json files in bash environment
2020-10-25 22:39:38 -05:00
jq \
# for sairedis zmq rpc channel
libzmq5
2020-04-28 17:57:13 -05:00
2020-09-08 21:30:14 -05:00
# Install redis-tools
2020-11-04 11:31:06 -06:00
{ % if CONFIGURED_ARCH = = "armhf" %}
RUN curl -k -o redis-tools_6.0.6-1~bpo10+1_armhf.deb "https://sonicstorage.blob.core.windows.net/packages/redis/redis-tools_6.0.6-1_bpo10+1_armhf.deb?sv=2015-04-05&sr=b&sig=67vHAMxsl%2BS3X1KsqhdYhakJkGdg5FKSPgU8kUiw4as%3D&se=2030-10-24T04%3A22%3A40Z&sp=r"
RUN dpkg -i redis-tools_6.0.6-1~bpo10+1_armhf.deb || apt-get install -f -y
RUN rm redis-tools_6.0.6-1~bpo10+1_armhf.deb
{ % elif CONFIGURED_ARCH = = "arm64" %}
RUN curl -o redis-tools_6.0.6-1~bpo10+1_arm64.deb "https://sonicstorage.blob.core.windows.net/packages/redis/redis-tools_6.0.6-1_bpo10+1_arm64.deb?sv=2015-04-05&sr=b&sig=GbkJV2wWln3hoz27zKi5erdk3NDKrAFrQriA97bcRCY%3D&se=2030-10-24T04%3A22%3A21Z&sp=r"
RUN dpkg -i redis-tools_6.0.6-1~bpo10+1_arm64.deb || apt-get install -f -y
RUN rm redis-tools_6.0.6-1~bpo10+1_arm64.deb
{ % else %}
2020-09-08 21:30:14 -05:00
RUN curl -o redis-tools_6.0.6-1~bpo10+1_amd64.deb "https://sonicstorage.blob.core.windows.net/packages/redis/redis-tools_6.0.6-1~bpo10+1_amd64.deb?sv=2015-04-05&sr=b&sig=73zbmjkf3pi%2Bn0R8Hy7CWT2EUvOAyzM5aLYJWCLySGM%3D&se=2030-09-06T19%3A44%3A59Z&sp=r"
RUN dpkg -i redis-tools_6.0.6-1~bpo10+1_amd64.deb || apt-get install -f -y
RUN rm redis-tools_6.0.6-1~bpo10+1_amd64.deb
2020-11-04 11:31:06 -06:00
{ % endif %}
2020-09-08 21:30:14 -05:00
2020-12-25 23:29:25 -06:00
# Upgrade pip via PyPI and uninstall the Debian version
RUN pip3 install --upgrade pip
RUN apt-get purge -y python3-pip
# setuptools and wheel are necessary for installing some Python wheel packages
RUN pip3 install --no-cache-dir setuptools = = 49.6.00
RUN pip3 install --no-cache-dir wheel = = 0.35.1
2020-11-20 01:41:32 -06:00
2020-05-08 23:24:05 -05:00
# For templating
2020-12-25 23:29:25 -06:00
RUN pip3 install j2cli
2020-05-08 23:24:05 -05:00
2020-11-20 01:41:32 -06:00
# Install supervisor
RUN pip3 install supervisor = = 4.2.1
# Add support for supervisord to handle startup dependencies
RUN pip3 install supervisord-dependent-startup= = 1.4.0
2022-12-08 10:58:35 -06:00
RUN mkdir -p /var/log/supervisor /etc/supervisor/conf.d
2020-04-28 17:57:13 -05:00
RUN apt-get -y purge \
exim4 \
exim4-base \
exim4-config \
exim4-daemon-light
{ % if docker_base_buster_debs.strip( ) -%}
# Copy locally-built Debian package dependencies
{ { copy_files( "debs/" , docker_base_buster_debs.split( ' ' ) , "/debs/" ) } }
# Install built Debian packages and implicitly install their dependencies
{ { install_debian_packages( docker_base_buster_debs.split( ' ' ) ) } }
{ %- endif %}
# Clean up apt
# Remove /var/lib/apt/lists/*, could be obsoleted for derived images
RUN apt-get clean -y && \
apt-get autoclean -y && \
apt-get autoremove -y && \
2022-03-15 20:12:49 -05:00
rm -rf /var/lib/apt/lists/* /tmp/* ~/.cache/
2020-04-28 17:57:13 -05:00
COPY [ "etc/rsyslog.d/*" , "/etc/rsyslog.d/" ]
COPY [ "root/.vimrc" , "/root/.vimrc" ]
RUN ln /usr/bin/vim.tiny /usr/bin/vim
COPY [ "etc/supervisor/supervisord.conf" , "/etc/supervisor/" ]
2022-12-08 10:58:35 -06:00
COPY [ "etc/supervisor/containercfgd.conf" , "/etc/supervisor/conf.d/" ]