Trying to fix issue
This commit is contained in:
parent
a902826c0a
commit
3da3f0b5e5
28
Dockerfile
28
Dockerfile
@ -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 /
|
||||||
|
Loading…
Reference in New Issue
Block a user