blob: 4e70059382326ce54076cfae78f69959093432e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
FROM ubuntu:18.04
ARG USERNAME=ubuntu
ARG USER_UID=1000
ARG USER_GID=$USER_UID
ARG VPP_GRP=vpp
ARG VPP_GID=998
ARG WORKDIR=/home/ubuntu
RUN apt-get update \
&& apt-get -y install --no-install-recommends apt-utils sudo dialog build-essential \
cmake cppcheck valgrind curl autoconf automake ccache debhelper dkms git libtool \
libapr1-dev dh-systemd libconfuse-dev git-review exuberant-ctags cscope pkg-config \
lcov chrpath autoconf indent clang-format libnuma-dev python-all python3-all \
python3-setuptools python-dev python-virtualenv python-pip libffi6 check \
libboost-all-dev libffi-dev python3-ply libmbedtls-dev cmake ninja-build uuid-dev \
python3-jsonschema gdb libssl-dev python-setuptools zsh 2>&1 \
#
# Verify git, process tools, lsb-release (useful for CLI installs) installed
&& apt-get -y install git procps lsb-release curl iproute2 \
#
# Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
&& groupadd --gid $USER_GID $USERNAME \
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \
# [Optional] Uncomment the next three lines to add sudo support
&& apt-get install -y sudo \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME \
# Create vpp group
&& groupadd --gid $VPP_GID $VPP_GRP \
#
&& mkdir -p $WORKDIR \
#
# Clean up
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
USER $USERNAME
COPY init.sh /init.sh
WORKDIR $WORKDIR
CMD ["bash", "/init.sh"]
|