docker-webtop/Dockerfile
Ryan Kuba 55b02b3e33
rebase fedora-i3 to new kasmvnc baseimage (#125)
* rebase fedora-i3 to new kasmvnc baseimage

* point readme to master

* update bin wrapper to pass cli options

---------

Co-authored-by: thelamer <ryankuba@gmai.com>
2023-04-07 17:47:34 -07:00

38 lines
781 B
Docker

FROM ghcr.io/linuxserver/baseimage-kasmvnc:fedora37
# set version label
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"
RUN \
echo "**** install packages ****" && \
dnf install -y --setopt=install_weak_deps=False --best \
chromium \
dmenu \
feh \
i3 \
i3status \
st && \
echo "**** application tweaks ****" && \
mv \
/usr/bin/chromium-browser \
/usr/bin/chromium-real && \
ln -s \
/usr/bin/st-fedora \
/usr/bin/x-terminal-emulator && \
echo "**** cleanup ****" && \
dnf autoremove -y && \
dnf clean all && \
rm -rf \
/config/.cache \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config