docker-webtop/Dockerfile
Ryan Kuba d1d80853d3
rebase alpine-i3 to 3.18 (#141)
Co-authored-by: thelamer <ryankuba@gmai.com>
2023-05-14 12:17:55 -04:00

37 lines
711 B
Docker

FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine318
# 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"
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
chromium \
i3status \
i3wm \
st \
util-linux-misc && \
echo "**** application tweaks ****" && \
mv \
/usr/bin/chromium-browser \
/usr/bin/chromium-real && \
ln -s \
/usr/bin/st \
/usr/bin/x-terminal-emulator && \
echo "**** cleanup ****" && \
rm -rf \
/config/.cache \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config