summaryrefslogtreecommitdiff
path: root/testenv/Dockerfile
blob: 99dd89922e3b913759577448408685c24a540975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM archlinux/base

RUN dd if=/dev/zero of=/root/loop.img bs=1024 count=1048576

RUN pacman -Syu --noconfirm \
	&& pacman -S --needed --noconfirm \
		base \
		base-devel \
		git \
		expac \
		jshon \
	&& (pacman -Sc --noconfirm || true)

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 \
	&& cd packer-kit \
	&& sudo -u packer makepkg \
	&& pacman --noconfirm -U packer-kit-*.pkg.tar.xz \
	&& cd - \
	&& rm -rf /tmp/packer-kit

RUN pkg-install \
	python \
	python-pip \
	python-tox \
	python-systemd \
	python-dbus \
	python-mako \
	libevent-patched \
	nginx-mainline \
	ustreamer \
	socat \
	htmlhint \
	eslint

COPY testenv/requirements.txt requirements.txt
RUN pip install -r requirements.txt

RUN useradd -r -c "Pi-KVM Nginx Server" -s /sbin/nologin kvmd-nginx
RUN mkdir -p /etc/kvmd/nginx

CMD /bin/bash