mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-08-31 06:28:36 +02:00
* rebase ubuntu-icewm to new kasmvnc baseimage * point readme to master screen blanking tweaks
44 lines
1.1 KiB
Docker
44 lines
1.1 KiB
Docker
FROM ghcr.io/linuxserver/baseimage-kasmvnc:ubuntujammy
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="thelamer"
|
|
|
|
# prevent Ubuntu's firefox stub from being installed
|
|
COPY /root/etc/apt/preferences.d/firefox-no-snap /etc/apt/preferences.d/firefox-no-snap
|
|
|
|
RUN \
|
|
echo "**** install packages ****" && \
|
|
add-apt-repository -y ppa:mozillateam/ppa && \
|
|
apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
apt-get install -y --no-install-recommends \
|
|
firefox \
|
|
icewm \
|
|
stterm && \
|
|
echo "**** application tweaks ****" && \
|
|
update-alternatives --set \
|
|
x-terminal-emulator \
|
|
/usr/bin/st && \
|
|
echo "**** theme ****" && \
|
|
rm -Rf /usr/share/icewm/themes/default && \
|
|
curl -s \
|
|
http://ryankuba.com/ice.tar.gz \
|
|
| tar zxf - -C /usr/share/icewm/themes/ && \
|
|
echo "**** cleanup ****" && \
|
|
apt-get autoclean && \
|
|
rm -rf \
|
|
/config/.cache \
|
|
/var/lib/apt/lists/* \
|
|
/var/tmp/* \
|
|
/tmp/*
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 3000
|
|
VOLUME /config
|