mirror of
https://github.com/smartfrigde/armcord.git
synced 2026-08-19 06:03:22 +00:00
21 lines
No EOL
327 B
Text
21 lines
No EOL
327 B
Text
FROM debian:bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./dist/*.deb .
|
|
|
|
RUN <<EOF
|
|
apt-get update -y && apt-get upgrade -y
|
|
apt-get install ./*.deb -y
|
|
apt-get install -qqy x11-apps x11vnc xvfb
|
|
|
|
EOF
|
|
|
|
RUN mkdir ~/.vnc && x11vnc -storepasswd 1234 ~/.vnc/passwd
|
|
|
|
COPY docker/start.sh /start.sh
|
|
RUN chmod +x /start.sh
|
|
|
|
EXPOSE 5900
|
|
|
|
CMD ["/start.sh"] |