mirror of
https://github.com/jopohl/urh.git
synced 2026-03-13 11:46:50 +01:00
12 lines
396 B
Plaintext
12 lines
396 B
Plaintext
FROM base/archlinux
|
|
RUN mkdir -p /root/.gnupg
|
|
RUN pacman -Sy --noconfirm archlinux-keyring
|
|
RUN pacman -Syu --noconfirm && pacman-db-upgrade
|
|
RUN pacman -S --noconfirm ca-certificates ca-certificates-mozilla
|
|
RUN pacman -S --noconfirm git python-numpy python-pyqt5 gcc xorg-server xorg-xinit xorg-utils xorg-server-utils ttf-dejavu
|
|
|
|
ADD run.sh /bin/run.sh
|
|
RUN chmod +x /bin/run.sh
|
|
|
|
CMD /bin/run.sh
|