summaryrefslogtreecommitdiff
path: root/testenv/Dockerfile
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2019-07-13 04:52:19 +0300
committerDevaev Maxim <[email protected]>2019-07-13 04:52:19 +0300
commitad97aecaf4d043c59d018310b4d8f4852d30b6e0 (patch)
tree90f6fbcdacc9aefd54cd093a77d337f1fb4543c9 /testenv/Dockerfile
parentdfe58d81efcc14b4ff8a3e6e2204bfdcce7a620b (diff)
new ustreamer and fps max
Diffstat (limited to 'testenv/Dockerfile')
-rw-r--r--testenv/Dockerfile11
1 files changed, 7 insertions, 4 deletions
diff --git a/testenv/Dockerfile b/testenv/Dockerfile
index 41bdf976..ba8a71ee 100644
--- a/testenv/Dockerfile
+++ b/testenv/Dockerfile
@@ -13,27 +13,30 @@ RUN pacman -Syu --noconfirm \
RUN useradd -r -c "Packer build user" -m -d /var/packer -s /sbin/nologin packer \
&& cd /tmp \
- && sudo -u packer git clone https://aur.archlinux.org/packer-kit.git \
+ && sudo -u packer git clone https://github.com/pi-kvm/packer-kit.git \
&& cd packer-kit \
&& sudo -u packer makepkg \
&& pacman --noconfirm -U packer-kit-*.pkg.tar.xz \
&& cd - \
&& rm -rf /tmp/packer-kit
-RUN pkg-install \
+RUN pkg-install -S \
python \
python-pip \
python-tox \
python-systemd \
python-dbus \
python-mako \
- libevent-patched \
nginx-mainline \
- ustreamer \
socat \
htmlhint \
eslint
+ARG USTREAMER_VERSION
+ENV USTREAMER_VERSION $USTREAMER_VERSION
+RUN echo $USTREAMER_VERSION
+RUN pkg-install -S ustreamer
+
COPY testenv/requirements.txt requirements.txt
RUN pip install -r requirements.txt