
base on python3 buster base image and adjust. Change-Id: I6367b447ecdb230584036ffab1606cd5878f3d0d Reviewed-on: https://forge.frm2.tum.de/review/c/sine2020/secop/playground/+/21321 Tested-by: JenkinsCodeReview <bjoern_pedersen@frm2.tum.de> Reviewed-by: Bjoern Pedersen <bjoern.pedersen@frm2.tum.de>
56 lines
1.8 KiB
Docker
56 lines
1.8 KiB
Docker
FROM python:3-buster AS base
|
|
ARG PYVER=python3
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install --no-install-recommends --no-install-suggests -y \
|
|
gcc \
|
|
git \
|
|
openssh-client \
|
|
make \
|
|
locales \
|
|
python3 \
|
|
python3-dev \
|
|
python3-pytango \
|
|
python3-venv python3-setuptools \
|
|
virtualenv
|
|
|
|
|
|
ENV LC_ALL=C.UTF-8
|
|
ENV LANG=C.UTF-8
|
|
ENV LANGUAGE=C.UTF-8
|
|
# Add user jenkins to the image
|
|
RUN groupadd -g 1001 jenkins && \
|
|
useradd -m -u 1001 -g 1001 -d /home/jenkins2 -s /bin/bash jenkins && \
|
|
mkdir /home/jenkins && chown jenkins:jenkins /home/jenkins && \
|
|
echo "jenkins:jenkins" | chpasswd
|
|
USER jenkins
|
|
RUN virtualenv /home/jenkins/tools2 && \
|
|
git clone https://forge.frm2.tum.de/review/frm2/taco/tools /home/jenkins/tools2src && \
|
|
. /home/jenkins/tools2/bin/activate && \
|
|
pip install -U pip wheel setuptools && \
|
|
pip install /home/jenkins/tools2src/ && \
|
|
rm -rf /home/jenkins/tools2src
|
|
|
|
RUN virtualenv -p /usr/bin/python3 --system-site-packages /home/jenkins/secopvenv && \
|
|
git clone https://forge.frm2.tum.de/review/sine2020/secop/playground /home/jenkins/playground && \
|
|
. /home/jenkins/secopvenv/bin/activate && \
|
|
pip install -U pip wheel setuptools && \
|
|
pip install -r /home/jenkins/playground/requirements-dev.txt -r /home/jenkins/playground/requirements.txt pylint pytest && \
|
|
rm -rf /home/jenkins/playground
|
|
|
|
|
|
FROM base AS docs
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
USER root
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-suggests --no-install-recommends \
|
|
texlive-latex-extra \
|
|
texlive-latex-base \
|
|
texlive-latex-recommended \
|
|
texlive-fonts-recommended \
|
|
texlive-base \
|
|
texlive-binaries \
|
|
latexmk
|