mirror of
https://github.com/pikvm/ustreamer.git
synced 2025-12-24 03:00:01 +00:00
27 lines
551 B
Docker
27 lines
551 B
Docker
FROM archlinux/archlinux:base
|
|
|
|
RUN mkdir -p /etc/pacman.d/hooks \
|
|
&& ln -s /dev/null /etc/pacman.d/hooks/30-systemd-tmpfiles.hook
|
|
|
|
RUN echo 'Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist
|
|
|
|
RUN pacman -Syu --noconfirm \
|
|
&& pacman -S --needed --noconfirm \
|
|
vim \
|
|
git \
|
|
libjpeg \
|
|
libevent \
|
|
libutil-linux \
|
|
libbsd \
|
|
python \
|
|
python-pip \
|
|
python-tox \
|
|
cppcheck \
|
|
npm \
|
|
&& (pacman -Sc --noconfirm || true) \
|
|
&& rm -rf /var/cache/pacman/pkg/*
|
|
|
|
RUN npm install htmlhint -g
|
|
|
|
CMD /bin/bash
|