aboutsummaryrefslogtreecommitdiff
path: root/stretch-armhf-obsworker/Dockerfile
diff options
context:
space:
mode:
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"]