aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 354afc853339c7457608390ae82056a4a3cc194e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM debian:bullseye

ENV WIDTH=1920
ENV HEIGHT=1080
ENV DEPTH=16

RUN apt-get --yes update && apt-get --yes install --no-install-recommends \
    firefox-esr \
    fonts-droid-fallback \
    fonts-noto \
    icewm \
    tightvncserver \
    xfonts-base \
    x11-xserver-utils \
    xterm

COPY startup.sh /

CMD ["/startup.sh"]

EXPOSE 5900