From 875d21312bbd2892d97e648fbe030f02c02fd6b5 Mon Sep 17 00:00:00 2001 From: Roger Rumao Date: Mon, 15 Apr 2024 14:25:18 -0500 Subject: [PATCH 1/2] Oscar Version 1.5.2 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 136344e..77bf575 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbullseye +FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm ARG TARGETPLATFORM ARG TARGETARCH ARG TARGETVARIANT -ARG OSCAR_VERSION=1.5.1 +ARG OSCAR_VERSION=1.5.2 RUN printf '%s' "Building for TARGETPLATFORM=${TARGETPLATFORM}" \ && printf '%s' ", TARGETARCH=${TARGETARCH}" \ @@ -14,9 +14,9 @@ RUN apt-get update -y && \ apt-get install -y --no-install-recommends wget cron RUN if [ "${TARGETARCH}" = "arm64" ]; then \ - wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_${OSCAR_VERSION}-RasPiOS-11_arm64.deb; \ + wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_${OSCAR_VERSION}-RasPiOS-12_arm64.deb; \ else \ - wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_${OSCAR_VERSION}-Debian11_amd64.deb; \ + wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_${OSCAR_VERSION}-Debian12_amd64.deb; \ fi RUN apt install -y /tmp/oscar.deb && \ From 97774c6f9bc80f2d8d202ff3da66b2ee972c7f3d Mon Sep 17 00:00:00 2001 From: Roger Rumao Date: Mon, 15 Apr 2024 15:30:21 -0500 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77bf575..b704be7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN apt-get update -y && \ apt-get install -y --no-install-recommends wget cron RUN if [ "${TARGETARCH}" = "arm64" ]; then \ - wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_${OSCAR_VERSION}-RasPiOS-12_arm64.deb; \ + wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/${OSCAR_VERSION}/oscar_${OSCAR_VERSION}-RasPiOS-12_arm64.deb; \ else \ - wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_${OSCAR_VERSION}-Debian12_amd64.deb; \ + wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/${OSCAR_VERSION}/oscar_${OSCAR_VERSION}-Debian12_amd64.deb; \ fi RUN apt install -y /tmp/oscar.deb && \