blob: 859d36a18e6b3cd15553cadb187009155de6fecd [file] [log] [blame]
Matthew Barthb4aea672016-11-10 14:59:52 -06001#!/bin/bash -xe
2#
3# Build the required docker image to run package unit tests
4#
5# Parameters:
6# param1: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# param2: <optional, the distro to build a docker image against>
Andrew Geissler8557b962018-06-25 16:10:32 -05009# default is ubuntu:artful
Matthew Barthb4aea672016-11-10 14:59:52 -060010
11set -uo pipefail
12
13DOCKER_IMG_NAME=${1:-"openbmc/ubuntu-unit-test"}
Patrick Venture52164fd2018-08-28 16:12:47 -070014DISTRO=${2:-"ubuntu:bionic"}
Matthew Barthb4aea672016-11-10 14:59:52 -060015
16# Determine the architecture
17ARCH=$(uname -m)
18case ${ARCH} in
19 "ppc64le")
20 DOCKER_BASE="ppc64le/"
21 ;;
22 "x86_64")
23 DOCKER_BASE=""
24 ;;
25 *)
26 echo "Unsupported system architecture(${ARCH}) found for docker image"
27 exit 1
28esac
29
William A. Kennington III32deed82018-09-17 20:48:23 -070030# Setup temporary files
31DEPCACHE_FILE=""
32cleanup() {
33 local status="$?"
Patrick Venture87445f22018-10-15 17:10:46 -070034 if [[ -n "$DEPCACHE_FILE" ]]; then
William A. Kennington III32deed82018-09-17 20:48:23 -070035 rm -f "$DEPCACHE_FILE"
36 fi
37 trap - EXIT ERR
38 exit "$status"
39}
40trap cleanup EXIT ERR INT TERM QUIT
41DEPCACHE_FILE="$(mktemp)"
42
William A. Kennington III4815f702018-10-03 19:27:42 -070043HEAD_PKGS=(
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070044 phosphor-objmgr
45 sdbusplus
46 sdeventplus
Patrick Venture22329962018-09-14 10:23:04 -070047 gpioplus
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -070048 phosphor-logging
49 phosphor-dbus-interfaces
50 openpower-dbus-interfaces
51)
William A. Kennington III32deed82018-09-17 20:48:23 -070052
53# Generate a list of depcache entries
54# We want to do this in parallel since the package list is growing
55# and the network lookup is low overhead but decently high latency.
56# This doesn't worry about producing a stable DEPCACHE_FILE, that is
57# done by readers who need a stable ordering.
58generate_depcache_entry() {
59 local package="$1"
60
61 local tip
62 tip=$(git ls-remote "https://github.com/openbmc/${package}" |
63 grep 'refs/heads/master' | awk '{ print $1 }')
64
65 # Lock the file to avoid interlaced writes
66 exec 3>> "$DEPCACHE_FILE"
67 flock -x 3
68 echo "$package:$tip" >&3
69 exec 3>&-
70}
William A. Kennington III4815f702018-10-03 19:27:42 -070071for package in "${HEAD_PKGS[@]}"; do
William A. Kennington III32deed82018-09-17 20:48:23 -070072 generate_depcache_entry "$package" &
Andrew Jeffery221eeda2018-03-08 13:32:43 +103073done
William A. Kennington III32deed82018-09-17 20:48:23 -070074wait
Andrew Jeffery221eeda2018-03-08 13:32:43 +103075
William A. Kennington III4815f702018-10-03 19:27:42 -070076# A list of package versions we are building
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070077# Start off by listing the stating versions of third-party sources
78declare -A PKG_REV=(
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070079 [boost]=1.68.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070080 [cereal]=v1.2.2
William A. Kennington III1962d572018-09-12 22:38:15 -070081 [CLI11]=v1.6.1
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070082 # Snapshot from 2018-10-11
83 [googletest]=b3b19a796cbb3222fb3a49daf3f0a9378e8505ad
84 [json]=v3.3.0
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070085 # libvncserver commit dd873fce451e4b7d7cc69056a62e107aae7c8e7a is required for obmc-ikvm
William A. Kennington IIIeaca67c2018-10-11 13:12:29 -070086 # Snapshot from 2018-10-08
87 [libvncserver]=7b1ef0ffc4815cab9a96c7278394152bdc89dc4d
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070088 # version from meta-openembedded/meta-oe/recipes-support/libtinyxml2/libtinyxml2_5.0.1.bb
89 [tinyxml2]=37bc3aca429f0164adf68c23444540b4a24b5778
Patrick Venturead4354e2018-10-12 16:59:54 -070090 [cppcheck]=df32b0fb05f0c951ab0efa691292c7428f3f50a9
William A. Kennington IIIc227fb72018-10-03 19:44:33 -070091)
William A. Kennington III4815f702018-10-03 19:27:42 -070092
93# Turn the depcache into a dictionary so we can reference the HEAD of each repo
94for line in $(cat "$DEPCACHE_FILE"); do
95 linearr=($(echo "$line" | tr ':' ' '))
96 PKG_REV["${linearr[0]}"]="${linearr[1]}"
97done
98
William A. Kennington III3cf94fd2018-10-03 19:16:55 -070099# Define common flags used for builds
100PREFIX="/usr/local"
101CONFIGURE_FLAGS=(
102 "--prefix=${PREFIX}"
103)
William A. Kennington III4a67c402018-10-03 15:53:56 -0700104CMAKE_FLAGS=(
105 "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
106 "-DBUILD_SHARED_LIBS=ON"
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700107 "-DCMAKE_INSTALL_PREFIX:PATH=${PREFIX}"
William A. Kennington III4a67c402018-10-03 15:53:56 -0700108)
109
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700110# Build the commands needed to compose our final image
111COPY_CMDS=""
112# We must sort the packages, otherwise we might produce an unstable
113# docker file and rebuild the image unnecessarily
114for pkg in $(echo "${!PKG_REV[@]}" | tr ' ' '\n' | LC_COLLATE=C sort -s); do
115 COPY_CMDS+="COPY --from=openbmc-${pkg} ${PREFIX} ${PREFIX}"$'\n'
William A. Kennington III36f26222018-11-01 13:40:18 -0700116 # Workaround for upstream docker bug and multiple COPY cmds
117 # https://github.com/moby/moby/issues/37965
118 COPY_CMDS+="RUN true"$'\n'
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700119done
120
Matthew Barthb4aea672016-11-10 14:59:52 -0600121################################# docker img # #################################
122# Create docker image that can run package unit tests
123if [[ "${DISTRO}" == "ubuntu"* ]]; then
124Dockerfile=$(cat << EOF
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700125FROM ${DOCKER_BASE}${DISTRO} as openbmc-base
Matthew Barthb4aea672016-11-10 14:59:52 -0600126
127ENV DEBIAN_FRONTEND noninteractive
128
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700129# We need the keys to be imported for dbgsym repos
130# New releases have a package, older ones fall back to manual fetching
131# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
132RUN apt-get update && ( apt-get install ubuntu-dbgsym-keyring || ( apt-get install -yy dirmngr && \
133 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622 ) )
134
135# Parse the current repo list into a debug repo list
136RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
137
138# Remove non-existent debug repos
139RUN sed -i '/-\(backports\|security\) /d' /etc/apt/sources.list.d/debug.list
140
141RUN cat /etc/apt/sources.list.d/debug.list
142
Matthew Barthb4aea672016-11-10 14:59:52 -0600143RUN apt-get update && apt-get install -yy \
144 gcc \
145 g++ \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700146 libc6-dbg \
Matthew Barthb4aea672016-11-10 14:59:52 -0600147 libc6-dev \
148 libtool \
149 cmake \
150 python \
151 python-dev \
Matthew Barthccb7f852016-11-23 17:43:02 -0600152 python-git \
Matthew Barth0e90f3c2017-01-16 13:43:05 -0600153 python-yaml \
Matthew Barth6cc35d82017-01-18 13:36:31 -0600154 python-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930155 python-pip \
Matthew Barthb4aea672016-11-10 14:59:52 -0600156 python-setuptools \
William A. Kennington III22658b02018-06-29 15:55:17 -0700157 python-socks \
Saqib Khan362ca852017-03-21 10:48:46 -0500158 python3 \
159 python3-dev\
160 python3-yaml \
161 python3-mako \
Andrew Jefferyb7206972018-04-30 11:57:29 +0930162 python3-pip \
Saqib Khan362ca852017-03-21 10:48:46 -0500163 python3-setuptools \
Matthew Barthb4aea672016-11-10 14:59:52 -0600164 pkg-config \
165 autoconf \
William A. Kennington III7e46dd82018-06-20 01:17:03 -0700166 autoconf-archive \
Matthew Barthb4aea672016-11-10 14:59:52 -0600167 libsystemd-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700168 libsystemd0-dbgsym \
Matthew Barth92f93872017-02-08 11:19:27 -0600169 libssl-dev \
Matthew Barth550bc0d2017-04-10 13:25:50 -0500170 libevdev-dev \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700171 libevdev2-dbgsym \
Eddie James61c89bb2018-09-06 13:48:53 -0500172 libjpeg-dev \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700173 libpng-dev \
Matthew Barthb4aea672016-11-10 14:59:52 -0600174 sudo \
William A. Kennington III22658b02018-06-29 15:55:17 -0700175 curl \
Leonel Gonzalez13ca3802017-03-07 14:08:44 -0600176 git \
Saqib Khan5158a322017-10-23 11:31:24 -0500177 dbus \
Andrew Geissler158b0a12018-01-10 10:46:48 -0800178 iputils-ping \
Patrick Venture52164fd2018-08-28 16:12:47 -0700179 clang-format-6.0 \
Ratan Gupta2f03fd72018-03-30 22:48:11 +0530180 iproute2 \
181 libnl-3-dev \
Patrick Venture643d8d02018-05-10 08:57:15 -0700182 libnl-genl-3-dev \
Ratan Guptaa0a1e332018-05-25 10:37:33 +0530183 libconfig++-dev \
William A. Kennington III9e2be202018-06-19 19:35:43 -0700184 libsnmp-dev \
185 valgrind \
William A. Kennington IIIb1da1272018-06-20 13:28:05 -0700186 valgrind-dbg \
Richard Marian Thomaiyar24660002018-06-26 21:50:57 +0530187 lcov \
James Feist878df5c2018-07-26 14:54:28 -0700188 libpam0g-dev \
Ratan Gupta48347e02018-08-08 17:43:10 +0530189 xxd \
James Feist182bbf32018-10-03 09:42:44 -0700190 libi2c-dev \
Andrew Geissler61a33972018-10-05 05:41:30 -0500191 wget \
Patrick Venturedef31a82018-12-10 13:24:46 -0800192 libldap2-dev \
193 libprotobuf-dev \
194 protobuf-compiler
Matthew Barthb4aea672016-11-10 14:59:52 -0600195
Matthew Bartha2366d92017-01-31 09:46:20 -0600196RUN pip install inflection
Adriana Kobylak3b02d3f2018-01-10 16:33:26 -0600197RUN pip install pycodestyle
Matthew Bartha2366d92017-01-31 09:46:20 -0600198
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700199FROM openbmc-base as openbmc-googletest
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700200RUN curl -L https://github.com/google/googletest/archive/${PKG_REV['googletest']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700201cd googletest-* && \
William A. Kennington IIIb47eea52018-10-03 17:11:29 -0700202mkdir build && \
203cd build && \
204cmake ${CMAKE_FLAGS[@]} -DBUILD_GTEST=ON -DBUILD_GMOCK=ON .. && \
William A. Kennington III048b5ee2018-10-03 19:37:56 -0700205make -j$(nproc) && \
206make install
Matthew Barthb4aea672016-11-10 14:59:52 -0600207
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700208FROM openbmc-base as openbmc-cereal
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700209RUN curl -L https://github.com/USCiLab/cereal/archive/${PKG_REV['cereal']}.tar.gz | tar -xz && \
210cp -a cereal-*/include/cereal/ ${PREFIX}/include/
Deepak Kodihallide7767c2017-06-21 02:19:14 -0500211
William A. Kennington III1962d572018-09-12 22:38:15 -0700212FROM openbmc-base as openbmc-CLI11
213RUN curl -L https://github.com/CLIUtils/CLI11/archive/${PKG_REV['CLI11']}.tar.gz | tar -xz && \
214cd CLI11-* && \
215mkdir build && \
216cd build && \
Patrick Venture37b27042018-10-15 17:17:36 -0700217cmake ${CMAKE_FLAGS[@]} -DCLI11_TESTING=OFF -DCLI11_EXAMPLES=OFF .. && \
William A. Kennington III1962d572018-09-12 22:38:15 -0700218make -j$(nproc) && \
219make install
220
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700221FROM openbmc-base as openbmc-json
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700222RUN mkdir ${PREFIX}/include/nlohmann/ && \
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700223curl -L -o ${PREFIX}/include/nlohmann/json.hpp https://github.com/nlohmann/json/releases/download/${PKG_REV['json']}/json.hpp
David Cobbleye99c07a2017-12-22 11:39:01 -0800224
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700225FROM openbmc-base as openbmc-boost
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700226RUN curl -L https://dl.bintray.com/boostorg/release/${PKG_REV['boost']}/source/boost_$(echo "${PKG_REV['boost']}" | tr '.' '_').tar.bz2 | tar -xj && \
Vernon Mauery2b168a82018-10-29 14:57:16 -0700227cd boost_*/ && \
228./bootstrap.sh --prefix=${PREFIX} --with-libraries=context,coroutine && \
229./b2 && ./b2 install --prefix=${PREFIX}
James Feist878df5c2018-07-26 14:54:28 -0700230
Patrick Venturead4354e2018-10-12 16:59:54 -0700231FROM openbmc-base as openbmc-cppcheck
232RUN curl -L https://github.com/danmar/cppcheck/archive/${PKG_REV['cppcheck']}.tar.gz | tar -xz && \
233cd cppcheck-* && \
234mkdir "${PREFIX}/cppcheck-cfg" && cp cfg/* "${PREFIX}/cppcheck-cfg/" && \
235make -j$(nproc) CFGDIR="${PREFIX}/cppcheck-cfg" CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" && \
236make PREFIX=${PREFIX} install
237
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700238FROM openbmc-base as openbmc-tinyxml2
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700239RUN curl -L https://github.com/leethomason/tinyxml2/archive/${PKG_REV['tinyxml2']}.tar.gz | tar -xz && \
William A. Kennington III5b550082018-10-03 19:25:49 -0700240cd tinyxml2-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700241mkdir build && \
242cd build && \
William A. Kennington III4a67c402018-10-03 15:53:56 -0700243cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700244make -j$(nproc) && \
245make install
246
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700247FROM openbmc-base as openbmc-libvncserver
William A. Kennington IIIc227fb72018-10-03 19:44:33 -0700248RUN curl -L https://github.com/LibVNC/libvncserver/archive/${PKG_REV['libvncserver']}.tar.gz | tar -xz && \
William A. Kennington III4815f702018-10-03 19:27:42 -0700249cd libvncserver-* && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700250mkdir build && \
251cd build && \
William A. Kennington IIIbb71cc02018-10-03 19:19:23 -0700252cmake ${CMAKE_FLAGS[@]} .. && \
William A. Kennington III581c4d42018-10-03 15:48:20 -0700253make -j$(nproc) && \
254make install
255
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700256FROM openbmc-base as openbmc-sdbusplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700257RUN curl -L https://github.com/openbmc/sdbusplus/archive/${PKG_REV['sdbusplus']}.tar.gz | tar -xz && \
258cd sdbusplus-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030259./bootstrap.sh && \
Patrick Venture380907a2018-12-03 13:13:25 -0800260./configure ${CONFIGURE_FLAGS[@]} --disable-tests --enable-transaction && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030261make -j$(nproc) && \
262make install
263
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700264FROM openbmc-base as openbmc-sdeventplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700265RUN curl -L https://github.com/openbmc/sdeventplus/archive/${PKG_REV['sdeventplus']}.tar.gz | tar -xz && \
266cd sdeventplus-* && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700267./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700268./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
William A. Kennington IIIb4f730a2018-09-12 11:21:20 -0700269make -j$(nproc) && \
270make install
271
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700272FROM openbmc-base as openbmc-gpioplus
William A. Kennington III4815f702018-10-03 19:27:42 -0700273RUN curl -L https://github.com/openbmc/gpioplus/archive/${PKG_REV['gpioplus']}.tar.gz | tar -xz && \
274cd gpioplus-* && \
Patrick Venture22329962018-09-14 10:23:04 -0700275./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700276./configure ${CONFIGURE_FLAGS[@]} --disable-tests --disable-examples && \
Patrick Venture22329962018-09-14 10:23:04 -0700277make -j$(nproc) && \
278make install
279
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700280FROM openbmc-base as openbmc-phosphor-dbus-interfaces
281COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700282RUN curl -L https://github.com/openbmc/phosphor-dbus-interfaces/archive/${PKG_REV['phosphor-dbus-interfaces']}.tar.gz | tar -xz && \
283cd phosphor-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030284./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700285./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030286make -j$(nproc) && \
287make install
288
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700289FROM openbmc-base as openbmc-openpower-dbus-interfaces
290COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700291RUN curl -L https://github.com/openbmc/openpower-dbus-interfaces/archive/${PKG_REV['openpower-dbus-interfaces']}.tar.gz | tar -xz && \
292cd openpower-dbus-interfaces-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030293./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700294./configure ${CONFIGURE_FLAGS[@]} && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030295make -j$(nproc) && \
296make install
297
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700298FROM openbmc-base as openbmc-phosphor-logging
299COPY --from=openbmc-cereal ${PREFIX} ${PREFIX}
300COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
301COPY --from=openbmc-phosphor-dbus-interfaces ${PREFIX} ${PREFIX}
Matt Spinler1d156512018-10-29 09:56:57 -0500302COPY --from=openbmc-openpower-dbus-interfaces ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700303RUN curl -L https://github.com/openbmc/phosphor-logging/archive/${PKG_REV['phosphor-logging']}.tar.gz | tar -xz && \
304cd phosphor-logging-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030305./bootstrap.sh && \
William A. Kennington IIIc8e8b202018-10-03 19:35:59 -0700306./configure ${CONFIGURE_FLAGS[@]} --enable-metadata-processing YAML_DIR=${PREFIX}/share/phosphor-dbus-yaml/yaml && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030307make -j$(nproc) && \
308make install
309
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700310FROM openbmc-base as openbmc-phosphor-objmgr
311COPY --from=openbmc-boost ${PREFIX} ${PREFIX}
312COPY --from=openbmc-sdbusplus ${PREFIX} ${PREFIX}
313COPY --from=openbmc-tinyxml2 ${PREFIX} ${PREFIX}
314COPY --from=openbmc-phosphor-logging ${PREFIX} ${PREFIX}
William A. Kennington III4815f702018-10-03 19:27:42 -0700315RUN curl -L https://github.com/openbmc/phosphor-objmgr/archive/${PKG_REV['phosphor-objmgr']}.tar.gz | tar -xz && \
316cd phosphor-objmgr-* && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030317./bootstrap.sh && \
William A. Kennington III3cf94fd2018-10-03 19:16:55 -0700318./configure ${CONFIGURE_FLAGS[@]} --enable-unpatched-systemd && \
Andrew Jeffery221eeda2018-03-08 13:32:43 +1030319make -j$(nproc) && \
320make install
321
William A. Kennington IIIda70d702018-10-03 19:57:35 -0700322
323# Build the final output image
324FROM openbmc-base
325${COPY_CMDS}
326
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700327# Some of our infrastructure still relies on the presence of this file
328# even though it is no longer needed to rebuild the docker environment
329# NOTE: The file is sorted to ensure the ordering is stable.
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800330RUN echo '$(LC_COLLATE=C sort -s "$DEPCACHE_FILE" | tr '\n' ',')' > /tmp/depcache
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700331
332# Final configuration for the workspace
333RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
334RUN mkdir -p $(dirname ${HOME})
335RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}
William A. Kennington IIIbe6aab22018-12-06 15:01:54 -0800336RUN echo "${USER} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
William A. Kennington III212cfcb2018-10-03 19:48:26 -0700337
Matthew Barthb4aea672016-11-10 14:59:52 -0600338RUN /bin/bash
339EOF
340)
341fi
342################################# docker img # #################################
343
344# Build above image
James Feist4bd2d452018-07-24 12:19:59 -0700345docker build --network=host -t ${DOCKER_IMG_NAME} - <<< "${Dockerfile}"