From 75da640083bae25ab19338cacc82916fef837020 Mon Sep 17 00:00:00 2001 From: poslop Date: Sun, 7 Jan 2024 15:57:14 -0600 Subject: [PATCH] librewolf build --- build/librewolf-vnc/Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build/librewolf-vnc/Dockerfile diff --git a/build/librewolf-vnc/Dockerfile b/build/librewolf-vnc/Dockerfile new file mode 100644 index 0000000..c1e2def --- /dev/null +++ b/build/librewolf-vnc/Dockerfile @@ -0,0 +1,23 @@ +FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine319 + +# set version label +ARG BUILD_DATE +ARG VERSION +ARG FIREFOX_VERSION +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="thelamer" + +# title +ENV TITLE=Librewolf + +RUN \ + echo "**** install packages ****" && \ + apk add librewolf --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/edge/testing/ --allow-untrusted && \ + sed -i 's|| \n yes\n \n|' /etc/xdg/openbox/rc.xml + +# COPY /root / + +# ports and volumes +EXPOSE 3000 + +VOLUME /config