aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2019-09-04 21:11:16 +0000
committerRob Austein <sra@hactrn.net>2019-09-04 21:57:36 +0000
commit60eee0111d92f2fc0ed65d942565699ad70b6799 (patch)
treea1ae02954c9c3e73338e3e89f32f4c4f89a13eb6 /Dockerfile
First public version
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