From 3edf25a61442bce999820cd2349805c2d486d834 Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Wed, 24 Jul 2024 07:39:15 +0000 Subject: [PATCH] Return to use Alpine. Updating to version 1.2.0 --- Dockerfile | 11 +++++++---- README.md | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f3e479..87a41fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ -FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntunoble +FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine320 -# Actualizar los índices de los paquetes y instalar Scribus -RUN apt-get update && \ - apt-get install -y scribus +# 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 # Añadir archivos locales y configurar puertos y volúmenes COPY /root / diff --git a/README.md b/README.md index 9f2fa76..5f2bac1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Scribus Docker Image -### version 1.1.0 \ No newline at end of file +### version 1.2.0 \ No newline at end of file