mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 12:23:35 +01:00
Add xjump
This commit is contained in:
parent
7c52735773
commit
4af11a1844
24
xjump/Dockerfile
Normal file
24
xjump/Dockerfile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# xjump
|
||||||
|
#
|
||||||
|
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||||
|
# -v /dev/snd \
|
||||||
|
# -e DISPLAY=unix:0.0 \
|
||||||
|
# arturn/xjump
|
||||||
|
#
|
||||||
|
FROM debian:bullseye-slim
|
||||||
|
LABEL maintainer "Artur Nebot"
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
apt-utils \
|
||||||
|
xjump \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
ENV HOME /home/xjump
|
||||||
|
ENV PATH "/usr/games:${PATH}"
|
||||||
|
RUN useradd --create-home --home-dir $HOME xjump \
|
||||||
|
&& chown -R xjump:xjump $HOME
|
||||||
|
|
||||||
|
WORKDIR $HOME
|
||||||
|
USER xjump
|
||||||
|
|
||||||
|
ENTRYPOINT [ "xjump" ]
|
Loading…
Reference in New Issue
Block a user