-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
32 lines (26 loc) · 1013 Bytes
/
Dockerfile
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
FROM archlinux/archlinux
RUN pacman -Sy
RUN yes | pacman --noconfirm -S sudo
RUN yes | sudo pacman --noconfirm -S gstreamer gst-plugins-ugly gst-plugins-base-libs gst-libav gst-plugins-base gst-plugins-good gst-plugin-rswebrtc gst-plugin-webrtchttp
RUN yes | sudo pacman --noconfirm -S pulseaudio xorg-server-xvfb openbox chromium
RUN yes | sudo pacman --noconfirm -S dbus
RUN yes | sudo pacman --noconfirm -S noto-fonts
RUN ls
RUN usermod -a -G audio root
COPY openbox.xml /etc/openbox.xml
COPY policies.json /etc/chromium/policies/managed/policies.json
COPY tini /tini
RUN chmod +x /tini
COPY openbox.xml /root/.config/openbox/rc.xml
COPY openbox.xml /home/.config/openbox/rc.xml
RUN mkdir /work && cd /work
#RUN mkdir /work/dist
#COPY nekoroom /work/
#COPY neko17 /work/
#COPY nekoCommand.sh /work/nekosh.sh
#RUN sudo chmod +x /work/nekosh.sh
WORKDIR /work
#COPY x.sh /work
#RUN sudo chmod +x /work/x.sh
#COPY preferences.json /work/preferences.json
CMD ["/work/x.sh"]