summaryrefslogtreecommitdiffstats
path: root/compass-db/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'compass-db/Dockerfile')
-rw-r--r--compass-db/Dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/compass-db/Dockerfile b/compass-db/Dockerfile
new file mode 100644
index 0000000..a7208a9
--- /dev/null
+++ b/compass-db/Dockerfile
@@ -0,0 +1,12 @@
+FROM ubuntu:trusty
+
+EXPOSE 3306
+
+RUN apt-get update && \
+ DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server && \
+ rm -rf /var/lib/apt/lists/*
+
+COPY entrypoint.sh /sbin/entrypoint.sh
+RUN chmod 755 /sbin/entrypoint.sh
+
+CMD ["/sbin/entrypoint.sh"]