Skip to content

Commit 8a241f6

Browse files
authoredMar 20, 2023
Updates to work with parsec 150-86e (#4)
* Build with newer ubuntu base image to support newer parsec. * Allow ctrl+c to exit. * Create .github/dependabot.yml
1 parent 83ace37 commit 8a241f6

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed
 

‎.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: docker
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10

‎Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# See base-image/image
2-
FROM ubuntu:bionic
2+
FROM ubuntu:jammy
33

44
COPY bin/install_clean /usr/bin/install_clean
55
RUN chmod +x /usr/bin/install_clean
66

77
# parsec dependencies + sound + gpu (install_clean is a wrapper around apt-get)
88
RUN install_clean libcairo2 libfreetype6 libgdk-pixbuf2.0-0 libgl1-mesa-glx libgl1 libglib2.0-0 libgtk2.0-0 \
99
libpango-1.0-0 libpangocairo-1.0-0 libsm6 libxxf86vm1 pulseaudio-utils libgl1-mesa-glx \
10-
libgl1-mesa-dri xserver-xorg-video-intel pulseaudio libva2 i965-va-driver
10+
libgl1-mesa-dri xserver-xorg-video-intel pulseaudio libva2 i965-va-driver \
11+
libavcodec58 libssl3 ca-certificates
1112

1213
# Parsec Client
1314
RUN install_clean wget \

‎parsec

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [[ "$USERID" != "1000" ]] || [[ "$GROUPID" != "1000" ]]; then
1414
fi
1515

1616
echo "launching parsec: (u${USERID}:g${GROUPID})"
17-
docker run -it --rm \
17+
docker run -it --rm --init \
1818
--env DISPLAY \
1919
--env PULSE_SERVER \
2020
-v /tmp/.X11-unix:/tmp/.X11-unix \

0 commit comments

Comments
 (0)