docker-webtop/Dockerfile
Ryan Kuba cf9658d6cf
Master selkies (#323)
* rebase master to selkies base, pending readme changes

* fix testing

* update readme for selkies

* bad template vars in block
2025-06-17 14:53:41 +00:00

49 lines
1.1 KiB
Docker

FROM ghcr.io/linuxserver/baseimage-selkies:alpine322
# set version label
ARG BUILD_DATE
ARG VERSION
ARG XFCE_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"
# title
ENV TITLE="Alpine XFCE"
RUN \
echo "**** add icon ****" && \
curl -o \
/usr/share/selkies/www/icon.png \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/webtop-logo.png && \
echo "**** install packages ****" && \
apk add --no-cache \
adw-gtk3 \
adwaita-xfce-icon-theme \
chromium \
mousepad \
ristretto \
thunar \
util-linux-misc \
xfce4 \
xfce4-terminal && \
echo "**** xfce-tweaks ****" && \
mv \
/usr/bin/thunar \
/usr/bin/thunar-real && \
echo "**** cleanup ****" && \
rm -f \
/etc/xdg/autostart/xfce4-power-manager.desktop \
/etc/xdg/autostart/xscreensaver.desktop \
/usr/share/xfce4/panel/plugins/power-manager-plugin.desktop && \
rm -rf \
/config/.cache \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config