mirror of
https://github.com/linuxserver/docker-rdesktop.git
synced 2026-02-20 06:16:43 +08:00
32 lines
691 B
Docker
32 lines
691 B
Docker
FROM ghcr.io/linuxserver/baseimage-rdesktop:alpine
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
ARG OPENBOX_VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="thelamer"
|
|
|
|
|
|
RUN \
|
|
echo "**** install packages ****" && \
|
|
apk add --no-cache \
|
|
firefox \
|
|
font-noto \
|
|
openbox \
|
|
xterm && \
|
|
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
|
|
obconf-qt && \
|
|
echo "**** openbox tweaks ****" && \
|
|
ln -s /usr/bin/obconf-qt /usr/bin/obconf && \
|
|
echo "**** cleanup ****" && \
|
|
rm -rf \
|
|
/tmp/*
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 3389
|
|
VOLUME /config
|