mirror of
https://github.com/linuxserver/docker-rdesktop.git
synced 2026-02-20 06:16:43 +08:00
34 lines
718 B
Docker
34 lines
718 B
Docker
FROM ghcr.io/linuxserver/baseimage-rdesktop:arm64v8-alpine320
|
|
|
|
# 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 \
|
|
obconf-qt \
|
|
st \
|
|
util-linux-misc && \
|
|
echo "**** application tweaks ****" && \
|
|
ln -s \
|
|
/usr/bin/st \
|
|
/usr/bin/x-terminal-emulator && \
|
|
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
|
|
echo "**** cleanup ****" && \
|
|
rm -rf \
|
|
/tmp/*
|
|
|
|
# add local files
|
|
COPY /root /
|
|
|
|
# ports and volumes
|
|
EXPOSE 3389
|
|
|
|
VOLUME /config
|