blob: 4f7168f3e8d3abc65e2d6dffb42812328c1ca753 [file] [log] [blame]
ARG VM_IMAGE_NAME=ubuntu
ARG VM_IMAGE_VERSION=jammy
FROM ${VM_IMAGE_NAME}:${VM_IMAGE_VERSION}
# Dockerfile for different VM OS versions
ENV DEBIAN_FRONTEND=noninteractive
# Do not add more stuff to this list that isn't small or critically useful.
# If you occasionally need something on the container do
# sudo apt-get update && apt-get whichever
# hadolint ignore=DL3005,DL3008
RUN apt-get update && \
apt-get install --no-install-recommends -y \
iptables \
iproute2 \
sudo \
ca-certificates \
&& apt-get upgrade -y \
&& apt-get clean \
&& rm -rf /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old
RUN if [ -f /usr/sbin/iptables-legacy ]; then \
update-alternatives --set iptables /usr/sbin/iptables-legacy && \
update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy; fi
# Add a user that will run the application. This allows running as this user and capture iptables
RUN useradd -m --uid 1338 application && \
echo "application ALL=NOPASSWD: ALL" >> /etc/sudoers