mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 02:53:40 -05:00
25 lines
382 B
Docker
25 lines
382 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update
|
|
|
|
RUN apt install -y ffmpeg xvfb software-properties-common dbus-x11 pulseaudio
|
|
|
|
RUN add-apt-repository -y ppa:xtradeb/apps
|
|
|
|
RUN apt update
|
|
|
|
RUN apt install -y chromium
|
|
|
|
RUN apt install -y sudo
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN apt clean
|
|
|
|
RUN useradd -ms /bin/bash stream
|
|
|
|
COPY run.sh ./
|
|
|
|
COPY user_run.sh /home/stream
|
|
|
|
ENTRYPOINT ["./run.sh"]
|