-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
28 lines (25 loc) · 1.05 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# x11docker/kaptain
#
# Kaptain is a universal graphical front-end for command line programs.
# It works on linux/UNIX platforms whereever Qt is available.
# Release 0.73 is using qmake and is compatible with Qt 4.
#
# Someone writes a simple script (so called grammar) which describes
# the possible arguments for a command line program and Kaptain
# brings up a friendly dialog to the user to set up the command line.
#
# https://github.com/mviereck/kaptain
#
# To use kaptain in this image, provide an X display and share your .kaptn file
# Example use with x11docker (https://github.com/mviereck/x11docker):
# x11docker --hostdisplay --clipboard --share YOURKAPTNFILE -- x11docker/kaptain YOURKAPTNFILE
FROM debian:jessie-slim
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && apt-get upgrade -y && \
apt-get install -y --no-install-recommends kaptain && \
apt-get autoremove -y && apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
echo "[QT]\n\
style=Cleanlooks\n\
" > /etc/xdg/Trolltech.conf
ENTRYPOINT ["/usr/bin/kaptain"]