aboutsummaryrefslogtreecommitdiff
path: root/stretch-armhf-obsworker/Dockerfile
diff options
context:
space:
mode:
authorDiana Picus <diana.picus@linaro.org>2019-02-07 13:05:57 +0100
committerDiana Picus <diana.picus@linaro.org>2019-02-07 13:06:07 +0100
commitf23dbeb4c17f2849f8f9bfd9e8ec443083551744 (patch)
tree035fc84a527115bddaf9d68c11bc5c8a7a7e9b4a /stretch-armhf-obsworker/Dockerfile
parent6e3975d175a8b395efef4d374fa3c963c497fc40 (diff)
parent0577b825203f9c221965f5eb2d16c289df2e1658 (diff)
Merge remote-tracking branch 'origin/tcwg-staging' into tcwg-llvmprodtcwg-llvmprod
Change-Id: I2f6c8930039c7399f6f58732bafca170d4baa2ad
Diffstat (limited to 'stretch-armhf-obsworker/Dockerfile')
-rw-r--r--stretch-armhf-obsworker/Dockerfile31
1 files changed, 31 insertions, 0 deletions
diff --git a/stretch-armhf-obsworker/Dockerfile b/stretch-armhf-obsworker/Dockerfile
new file mode 100644
index 00000000..4cae6c58
--- /dev/null
+++ b/stretch-armhf-obsworker/Dockerfile
@@ -0,0 +1,31 @@
+FROM debian:stretch
+
+RUN apt-get update \
+ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
+ apt-utils \
+ binutils \
+ bsdtar \
+ cpio \
+ curl \
+ debootstrap \
+ libcompress-raw-zlib-perl \
+ libtimedate-perl \
+ libxml-parser-perl \
+ libxml-simple-perl \
+ lsb-base \
+ lvm2 \
+ lzma \
+ psmisc \
+ rpm \
+ util-linux \
+ xz-utils \
+ && apt-get clean \
+ && rm -rf \
+ /var/lib/apt/lists/* \
+ /tmp/* \
+ /var/tmp/*
+
+
+COPY start-obsworker /
+
+CMD ["/start-obsworker"]