From fabd43c8e1422f13e6e2cae5b3dc5c3ab71a4a77 Mon Sep 17 00:00:00 2001 From: Roger Rumao Date: Sun, 27 Nov 2022 21:34:48 -0600 Subject: [PATCH 1/2] Docker OSCAR initial code - bullseye --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 69bc2d9..e012054 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM golang:1.14-buster AS easy-novnc-build +FROM golang:1.19-bullseye AS easy-novnc-build WORKDIR /src RUN go mod init build && \ go get github.com/geek1011/easy-novnc@v1.1.0 && \ go build -o /bin/easy-novnc github.com/geek1011/easy-novnc -FROM debian:buster +FROM debian:bullseye RUN apt-get update -y && \ apt-get install -y --no-install-recommends openbox tigervnc-standalone-server supervisor gosu && \ @@ -18,7 +18,7 @@ RUN apt-get update -y && \ RUN apt-get update -y && \ - wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_1.4.0-Debian10_amd64.deb && \ + wget -q -O /tmp/oscar.deb https://www.apneaboard.com/OSCAR/oscar_1.4.0-Debian11_amd64.deb && \ apt install -y /tmp/oscar.deb && \ rm /tmp/oscar.deb && \ rm -rf /var/lib/apt/lists From 0b59e055505e8a52414bfcdbdcb82d795c019695 Mon Sep 17 00:00:00 2001 From: Roger Rumao Date: Sun, 27 Nov 2022 23:07:40 -0600 Subject: [PATCH 2/2] Docker OSCAR initial code - bullseye --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89f5375..80b62c4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ To simply do a quick and dirty run of the Oscar container: docker run \ -d --rm \ --name oscar \ - -v=./oscar-data:/data \ + -v=${pwd}/oscar-data:/data \ --publish=8080:8080 \ rogerrum/docker-oscar