docker-webtop/Dockerfile.aarch64
2025-06-17 14:52:45 +00:00

44 lines
993 B
Docker

FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-alpine322
# set version label
ARG BUILD_DATE
ARG VERSION
ARG I3_VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"
# title
ENV TITLE="Alpine i3"
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 \
chromium \
i3status \
i3wm \
st \
util-linux-misc && \
echo "**** application tweaks ****" && \
ln -s \
/usr/bin/st \
/usr/bin/x-terminal-emulator && \
sed -i \
's:/usr/bin/chromium-browser:/usr/bin/chromium:g' \
/usr/share/applications/chromium.desktop && \
echo "**** cleanup ****" && \
rm -rf \
/config/.cache \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config