forked from jgoerzen/docker-bbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile-pa
26 lines (19 loc) · 858 Bytes
/
Dockerfile-pa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM debian:buster-slim
#REMOVED PACKAGES balance vim-tiny less wget xdotool telnet mtools
RUN sed -i 's/main/main contrib/g' /etc/apt/sources.list && \
apt-get update && \
apt-get -y -u dist-upgrade && \
apt-get -y --no-install-recommends install dosbox tightvncserver xfonts-base \
lwm xterm procps curl ca-certificates \
zip unzip nano pwgen inotify-tools \
pulseaudio fluidsynth libfluidsynth-dev fluid-soundfont-gm qsynth && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
#copy pulseaudio config files
COPY default.pa client.conf /etc/pulse/
COPY start.sh startdosbox.sh startvnc.sh /usr/local/bin/
COPY stopcont.sh cont.sh stop.sh /usr/local/bin/
COPY setup.sh /
RUN /setup.sh
RUN apt-get -y --purge autoremove && rm /setup.sh
EXPOSE 5901
ENTRYPOINT /usr/local/bin/start.sh