aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..1bdf703
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,16 @@
+# At some point maybe add variables to control size of screen.
+
+FROM debian:stretch
+
+RUN apt-get --yes update && apt-get --yes install --no-install-recommends \
+ firefox-esr \
+ icewm \
+ tightvncserver \
+ xfonts-base \
+ xterm
+
+COPY startup.sh /
+
+CMD ["/startup.sh"]
+
+EXPOSE 5900