summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: e94da84d02a4faffa79c154a69abdc5aa14c877a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM linaro/jenkins-amd64-ubuntu:bionic

RUN apt update \
  && DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
  python-dev \
  python-virtualenv \
  virtualenv \
  python-flake8 \
  flake8 \
  libldap2-dev \
  libsasl2-dev \
  libssl-dev

COPY . patchwork-tools
RUN cd patchwork-tools \
&& ./unit-test.sh

CMD ["/usr/sbin/sshd", "-D"]