This commit is contained in:
Micha Albert 2024-09-11 16:10:23 -04:00
parent c7746071fc
commit 1c91c56d30
4 changed files with 45 additions and 32 deletions

View file

@ -1,17 +1,19 @@
FROM ubuntu:22.04
ARG DEBIAN_FRONTEND=noninteractive
FROM ubuntu:latest
RUN apt update
RUN apt install -y ffmpeg
RUN apt install -y ffmpeg xvfb software-properties-common dbus-x11
RUN apt install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-wpe
RUN add-apt-repository -y ppa:xtradeb/apps
RUN apt update
RUN apt install -y chromium
RUN rm -rf /var/lib/apt/lists/*
RUN apt clean
COPY run.sh /
COPY run.sh .
ENTRYPOINT ["/run.sh"]
ENTRYPOINT ["./run.sh"]