aboutsummaryrefslogtreecommitdiff
path: root/stretch-armhf-testdef/Dockerfile
blob: 59417e348b8f5f8eb9ee537746aee2690398b05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM linaro/ci-armhf-debian:stretch

RUN apt-get update \
 && DEBIAN_FRONTEND=noninteractive apt-get install -y \
 python-pip \
 && git clone http://git.linaro.org/qa/test-definitions.git \
 && cd test-definitions \
 && git checkout master \
 && pip install -r automated/utils/requirements.txt \
 && apt-get clean \
 && rm -rf \
 /tmp/* \
 /var/tmp/*

ENV REPO_PATH=/test-definitions \
 PATH="/test-definitions/automated/bin:${PATH}"

WORKDIR /test-definitions