Trying to fix issue

This commit is contained in:
Alejandro Lembke Barrientos 2024-07-23 22:19:46 +00:00
parent a902826c0a
commit 3da3f0b5e5
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 16 additions and 14 deletions

View File

@ -1,21 +1,23 @@
FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine320 FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble
# Instalar dependencias necesarias # Instalar dependencias necesarias
RUN apk update && apk add --no-cache \ RUN apt-get update && apt-get install -y \
libstdc++ \ libstdc++6 \
libx11 \ libx11-6 \
glib \ libglib2.0-0 \
libxrender \ libxrender1 \
libxext \ libxext6 \
libintl \ libintl-perl \
openjdk11-jre \ openjdk-11-jre \
wget \ wget \
tar unzip \
&& rm -rf /var/lib/apt/lists/*
# Descargar e instalar Viva Designer # Descargar e instalar Viva Designer
RUN wget https://viva.systems/es/servicio/descargas/?wpdmdl=8074 -O /tmp/viva-designer.tar.gz \ 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 \
&& tar -xzvf /tmp/viva-designer.tar.gz -C /opt/ \ && unzip /tmp/viva-designer.zip -d /tmp \
&& rm /tmp/viva-designer.tar.gz && dpkg -i /tmp/*.deb \
&& rm -rf /tmp/*
# add local files # add local files
# COPY /root / # COPY /root /

View File

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