Compare commits

..

No commits in common. "master" and "0.0.2" have entirely different histories.

4 changed files with 16 additions and 47 deletions

View File

@ -1,47 +1,24 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine320
# Instalar dependencias necesarias, incluyendo las de Qt y xcb # Instalar dependencias necesarias
RUN apt-get update && apt-get install -y \ RUN apk update && apk add --no-cache \
libstdc++6 \ libstdc++ \
libx11-6 \ libx11 \
libglib2.0-0 \ glib \
libxrender1 \ libxrender \
libxext6 \ libxext \
libintl-perl \ libintl \
openjdk-11-jre \ openjdk11-jre \
wget \ wget \
unzip \ tar
libxcb-xinerama0 \
libusb-0.1-4 \
# Dependencias de Qt y xcb
libqt5widgets5 \
libqt5gui5 \
libqt5core5a \
libqt5dbus5 \
libxcb-icccm4 \
libxcb-image0 \
libxcb-keysyms1 \
libxcb-randr0 \
libxcb-render-util0 \
libxcb-render0 \
libxcb-shape0 \
libxcb-sync1 \
libxcb-xfixes0 \
libxcb-xinerama0 \
libxcb-xkb1 \
libxkbcommon-x11-0 \
libxkbcommon0 \
qt5-gtk-platformtheme \
&& rm -rf /var/lib/apt/lists/*
# Descargar e instalar Viva Designer # Descargar e instalar Viva Designer
RUN wget "https://viva.systems/download/vivadesigner11-64-bit-free-debian-deb/?wpdmdl=8041&refresh=668cfa667d4841720515174&ind=0&filename=viva-designer-free-11.0.0-9016_debian_9_x86_64_BETA.deb.zip" -O /tmp/viva-designer.zip \ RUN wget https://viva.systems/es/servicio/descargas/?wpdmdl=8074 -O /tmp/viva-designer.tar.gz \
&& unzip /tmp/viva-designer.zip -d /tmp \ && tar -xzvf /tmp/viva-designer.tar.gz -C /opt/ \
&& find /tmp -name "*.deb" -exec dpkg -i {} \; \ && rm /tmp/viva-designer.tar.gz
&& rm -rf /tmp/*
# add local files # add local files
COPY /root / # COPY /root /
# ports and volumes # ports and volumes
EXPOSE 3000 EXPOSE 3000

View File

@ -1,3 +1,3 @@
# Viva Designer Image # Viva Designer Image
### version 0.0.8 ### version 0.0.2

View File

@ -1 +0,0 @@
/usr/lib/viva/VivaDesigner

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="root-menu" label="MENU">
<item label="xterm" icon="/usr/share/pixmaps/xterm-color_48x48.xpm"><action name="Execute"><command>/usr/bin/xterm</command></action></item>
<item label="VivaDesigner" icon="/usr/share/icons/hicolor/48x48/apps/VivaDesigner-Logo.png"><action name="Execute"><command>/usr/lib/viva/VivaDesigner</command></action></item>
</menu>
</openbox_menu>