2016-12-31 01:00:19 +01:00
|
|
|
# This dockerfile is not meant to be used directly by docker. The
|
|
|
|
# {{}} varibles are replaced with values by the makefile. Please generate
|
|
|
|
# the docker image for this file by running:
|
|
|
|
#
|
|
|
|
# make coreboot-jenkins-node
|
|
|
|
#
|
|
|
|
# Variables can be updated on the make command line or left blank to use
|
|
|
|
# the default values set by the makefile.
|
|
|
|
#
|
|
|
|
# SDK_VERSION is used to name the version of the coreboot sdk to use.
|
|
|
|
# Typically, this corresponds to the toolchain version.
|
|
|
|
# SSH_KEY is the contents of the file coreboot-jenkins-node/authorized_keys
|
|
|
|
# Because we're piping the contents of the dockerfile into the
|
|
|
|
# docker build command, the 'COPY' keyword isn't valid.
|
|
|
|
|
|
|
|
FROM coreboot/coreboot-sdk:{{SDK_VERSION}}
|
2016-05-16 19:27:56 +02:00
|
|
|
USER root
|
2016-05-16 19:27:56 +02:00
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
RUN apt-get -y update && \
|
|
|
|
apt-get -y install \
|
2022-02-28 23:20:10 +01:00
|
|
|
default-jre-headless \
|
2022-09-01 11:11:12 +02:00
|
|
|
libcmocka-dev \
|
2023-01-28 11:16:04 +01:00
|
|
|
liblua5.4-dev \
|
2022-02-28 23:20:10 +01:00
|
|
|
linkchecker \
|
2023-01-28 11:16:04 +01:00
|
|
|
lua5.4 \
|
2022-02-28 23:20:10 +01:00
|
|
|
meson \
|
|
|
|
ninja-build \
|
|
|
|
openssh-server \
|
|
|
|
parallel \
|
2022-05-24 00:04:38 +02:00
|
|
|
ruby-full \
|
2022-02-28 23:20:10 +01:00
|
|
|
sdcc \
|
2023-04-06 02:29:23 +02:00
|
|
|
python3-pip \
|
|
|
|
pykwalify \
|
2023-11-10 21:20:18 +01:00
|
|
|
python3-venv \
|
2023-04-06 02:29:23 +02:00
|
|
|
python3-yaml \
|
|
|
|
python3-pyelftools \
|
|
|
|
python3-jsonschema \
|
|
|
|
python3-colorama \
|
|
|
|
python3-pyrsistent \
|
|
|
|
swig \
|
|
|
|
&& apt-get clean \
|
|
|
|
&& gem install mdl
|
2016-05-16 19:27:56 +02:00
|
|
|
|
|
|
|
RUN mkdir /var/run/sshd && \
|
2016-12-31 01:00:19 +01:00
|
|
|
chmod 0755 /var/run/sshd && \
|
|
|
|
/usr/bin/ssh-keygen -A
|
2016-05-16 19:27:56 +02:00
|
|
|
|
2020-10-26 01:24:34 +01:00
|
|
|
# Create tmpfs directories to build in
|
2018-07-13 05:49:06 +02:00
|
|
|
RUN mkdir /cb-build && \
|
|
|
|
chown coreboot:coreboot /cb-build && \
|
2020-10-26 01:44:35 +01:00
|
|
|
echo "tmpfs /cb-build tmpfs rw,mode=1777,noatime 0 0" > /etc/fstab && \
|
2020-10-26 01:24:34 +01:00
|
|
|
mkdir -p /home/coreboot/node-root/workspace && \
|
|
|
|
chown -R coreboot:coreboot /home/coreboot/node-root && \
|
2020-10-26 01:44:35 +01:00
|
|
|
echo "tmpfs /home/coreboot/node-root/workspace tmpfs rw,mode=1777,strictatime,atime 0 0" >> /etc/fstab && \
|
2018-07-13 05:49:06 +02:00
|
|
|
chown coreboot:coreboot /home/coreboot/.ccache && \
|
|
|
|
echo "tmpfs /home/coreboot/.ccache tmpfs rw,mode=1777 0 0" >> /etc/fstab
|
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
# Build encapsulate tool
|
2023-11-10 19:51:35 +01:00
|
|
|
ADD https://raw.githubusercontent.com/coreboot/encapsulate/master/encapsulate.c /tmp/encapsulate.c
|
2016-05-16 19:27:56 +02:00
|
|
|
RUN gcc -o /usr/sbin/encapsulate /tmp/encapsulate.c && \
|
|
|
|
chown root /usr/sbin/encapsulate && \
|
|
|
|
chmod +s /usr/sbin/encapsulate
|
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
VOLUME /data/cache
|
2018-07-13 05:49:06 +02:00
|
|
|
ENTRYPOINT mount /cb-build && \
|
2020-10-26 01:24:34 +01:00
|
|
|
mount /home/coreboot/node-root/workspace && \
|
|
|
|
chown -R coreboot:coreboot /home/coreboot/node-root && \
|
2018-07-13 05:49:06 +02:00
|
|
|
mount /home/coreboot/.ccache && \
|
|
|
|
chown coreboot:coreboot /home/coreboot/.ccache && \
|
|
|
|
/usr/sbin/sshd -p 49151 -D
|
2016-05-16 19:27:56 +02:00
|
|
|
EXPOSE 49151
|
2023-07-31 17:33:03 +02:00
|
|
|
|
|
|
|
USER coreboot
|
2023-11-10 21:20:18 +01:00
|
|
|
ENV VIRTUAL_ENV="/home/coreboot/python3"
|
|
|
|
ENV PATH=$VIRTUAL_ENV/bin:$PATH:/home/coreboot/.local/bin
|
|
|
|
RUN echo 'export PATH=$PATH:/opt/xgcc/bin' >> /home/coreboot/.bashrc && \
|
|
|
|
echo "source ${VIRTUAL_ENV}/bin/activate" >> /home/coreboot/.bashrc && \
|
|
|
|
python3 -m venv /home/coreboot/python3 && \
|
|
|
|
pip3 install --upgrade --no-cache-dir pip && \
|
|
|
|
pip3 install --no-cache-dir \
|
2023-07-31 17:33:03 +02:00
|
|
|
setuptools==58.2.0 \
|
2023-02-22 19:55:22 +01:00
|
|
|
jinja2==3.1.2 \
|
|
|
|
recommonmark===0.7.1 \
|
|
|
|
sphinx===6.2.1 \
|
|
|
|
sphinxcontrib-ditaa===1.0.2 \
|
|
|
|
sphinx_autobuild===2021.3.14 \
|
|
|
|
sphinx_rtd_theme===1.2.2 \
|
2023-07-31 17:33:03 +02:00
|
|
|
&& mkdir -p /home/coreboot/.ssh && \
|
|
|
|
echo "{{SSH_KEY}}" > /home/coreboot/.ssh/authorized_keys && \
|
|
|
|
chmod 0700 /home/coreboot/.ssh && \
|
|
|
|
chmod 0600 /home/coreboot/.ssh/authorized_keys
|
2023-11-15 23:29:04 +01:00
|
|
|
USER root
|