From 8dd9f5e9469b0712213c3b7d7dfc63babcb7fefe Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Wed, 24 Jul 2024 07:21:12 +0000 Subject: [PATCH] Trying to fix windows issues with base image of ubuntu. Updating to version 1.1.0 --- Dockerfile | 11 ++++------- README.md | 2 +- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87a41fd..2f3e479 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,8 @@ -FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine320 +FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble -# Habilitar el repositorio "community" y actualizar los índices de los paquetes -RUN echo "@community http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories && \ - apk update - -# Instalar Scribus desde el repositorio "community" -RUN apk add scribus@community +# Actualizar los índices de los paquetes y instalar Scribus +RUN apt-get update && \ + apt-get install -y scribus # Añadir archivos locales y configurar puertos y volúmenes COPY /root / diff --git a/README.md b/README.md index 813ae59..9f2fa76 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Scribus Docker Image -### version 1.0.1 \ No newline at end of file +### version 1.1.0 \ No newline at end of file