Skip to content

Commit

Permalink
Add vlc to installed applications
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcaunt committed Feb 12, 2025
1 parent 183318d commit a0f1850
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions webx-dev-env-debian-11.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ RUN DEBIAN_FRONTEND=noninteractive apt install -y file cmake dpkg-dev pkg-config
RUN DEBIAN_FRONTEND=noninteractive apt install -y xfce4 xrdp dbus dbus-x11
RUN DEBIAN_FRONTEND=noninteractive apt install -y xterm terminator nano less
RUN DEBIAN_FRONTEND=noninteractive apt install -y curl unzip git gdb
RUN DEBIAN_FRONTEND=noninteractive apt install -y vlc

# Allow vlc to be run as root
RUN sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Ensure webx-engine is mounted to /app

Expand Down
3 changes: 3 additions & 0 deletions webx-dev-env-debian-12.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ RUN apt install -y xfce4 xrdp dbus dbus-x11
RUN apt install -y xterm terminator nano less
RUN apt install -y curl unzip git gdb

# Allow vlc to be run as root
RUN sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Ensure webx-engine is mounted to /app

WORKDIR /app
Expand Down
3 changes: 3 additions & 0 deletions webx-dev-env-ubuntu-20.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt install -y xfce4 xrdp dbus dbus-x11
RUN DEBIAN_FRONTEND=noninteractive apt install -y xterm terminator nano less
RUN DEBIAN_FRONTEND=noninteractive apt install -y curl unzip git gdb

# Allow vlc to be run as root
RUN sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Ensure webx-engine is mounted to /app

WORKDIR /app
Expand Down
3 changes: 3 additions & 0 deletions webx-dev-env-ubuntu-22.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt install -y xterm terminator nano less
RUN DEBIAN_FRONTEND=noninteractive apt install -y curl unzip git gdb
RUN DEBIAN_FRONTEND=noninteractive apt remove -y xfce4-screensaver

# Allow vlc to be run as root
RUN sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Ensure webx-engine is mounted to /app

WORKDIR /app
Expand Down
3 changes: 3 additions & 0 deletions webx-dev-env-ubuntu-24.04.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ RUN apt install -y xfce4 xrdp dbus dbus-x11
RUN apt install -y xterm terminator nano less
RUN apt install -y curl unzip git gdb

# Allow vlc to be run as root
RUN sed -i 's/geteuid/getppid/' /usr/bin/vlc

# Ensure webx-engine is mounted to /app

WORKDIR /app
Expand Down

0 comments on commit a0f1850

Please sign in to comment.