summaryrefslogtreecommitdiffstats
path: root/compass-db/Dockerfile
diff options
context:
space:
mode:
authorHarry Huang <huangxiangyu5@huawei.com>2017-11-03 10:27:25 +0800
committerHarry Huang <huangxiangyu5@huawei.com>2017-11-03 10:27:25 +0800
commit96edb4c56d964b73663c663b7b237e718ca3d4da (patch)
tree55d729c83d7c9ca3389e94cca46b271a4eaea20d /compass-db/Dockerfile
parent3656ab7b5e3f2f26f7c98f9dcc97b3c461fa2a76 (diff)
Add compass-db
Database for Compass Change-Id: I5f624c5b8ed59683b5b72b771607ea74a4a4fd7e Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
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"]