IT WORKS!!!111!!!1!!1

This commit is contained in:
Micha Albert 2024-09-12 10:56:33 -04:00
parent 1c91c56d30
commit 5774a351e1
4 changed files with 48 additions and 23 deletions

View file

@ -2,7 +2,7 @@ FROM ubuntu:latest
RUN apt update
RUN apt install -y ffmpeg xvfb software-properties-common dbus-x11
RUN apt install -y ffmpeg xvfb software-properties-common dbus-x11 pulseaudio
RUN add-apt-repository -y ppa:xtradeb/apps
@ -10,10 +10,16 @@ RUN apt update
RUN apt install -y chromium
RUN apt install -y sudo
RUN rm -rf /var/lib/apt/lists/*
RUN apt clean
COPY run.sh .
RUN useradd -ms /bin/bash stream
COPY run.sh ./
COPY user_run.sh /home/stream
ENTRYPOINT ["./run.sh"]