mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2026-02-06 05:08:13 +08:00
29 lines
637 B
Docker
29 lines
637 B
Docker
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:fedora
|
|
|
|
# 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 \
|
|
firefox \
|
|
leafpad \
|
|
obconf-qt && \
|
|
echo "**** openbox tweaks ****" && \
|
|
ln -s /usr/bin/obconf-qt /usr/bin/obconf && \
|
|
echo "**** cleanup ****" && \
|
|
dnf autoremove -y && \
|
|
dnf clean all && \
|
|
rm -rf \
|
|
/tmp/*
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 3000
|
|
VOLUME /config
|