docker-webtop/Dockerfile
Ryan Kuba 9d389082d2
rebase ubuntu-mate to new kasmvnc baseimage (#134)
* rebase ubuntu-mate to new kasmvnc baseimage

* point readme to master screen blanking tweaks
2023-04-07 17:09:16 -07:00

47 lines
1.2 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 --no-install-recommends -y \
ayatana-indicator-application \
firefox \
mate-applets \
mate-applet-brisk-menu \
mate-terminal \
pluma \
ubuntu-mate-artwork \
ubuntu-mate-default-settings \
ubuntu-mate-desktop \
ubuntu-mate-icon-themes && \
echo "**** mate tweaks ****" && \
rm -f \
/etc/xdg/autostart/mate-power-manager.desktop \
/etc/xdg/autostart/mate-screensaver.desktop && \
echo "**** cleanup ****" && \
apt-get autoclean && \
rm -rf \
/config/.cache \
/config/.launchpadlib \
/var/lib/apt/lists/* \
/var/tmp/* \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config