public code v1

This commit is contained in:
Francisco Jesús Martínez Mimbrera
2026-05-23 00:32:57 +02:00
commit 759a8968a2
4357 changed files with 163763 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
FROM --platform=linux/amd64 eclipse-temurin:11-jre-focal
RUN apt-get update && apt-get install -y \
libgtk-3-0 \
libwebkit2gtk-4.0-37 \
libcanberra-gtk3-module \
libglib2.0-0 \
tigervnc-standalone-server \
tigervnc-common \
novnc \
websockify \
openbox \
x11-xkb-utils \
xkb-data \
fonts-dejavu \
fonts-liberation \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 6080
ENV DISPLAY=:1
ENV LANG=es_ES.UTF-8
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]