diff options
author | Justin chi <chigang@huawei.com> | 2018-02-27 02:35:13 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-27 02:35:13 +0000 |
commit | 15a7cbc925bed896c3c09a5635454c33dbffbadc (patch) | |
tree | 7ea5215fdd29696b621014174edb9bb64f740546 /compass-db/Dockerfile-arm64 | |
parent | aa9931ff28b599455f181267b9510e14ddbe8830 (diff) | |
parent | 8e4c3c0e8e6c82b84501ef577e4fd069e9c05b02 (diff) |
Merge "compass-db: support arm64"opnfv-6.1.0opnfv-6.0.0
Diffstat (limited to 'compass-db/Dockerfile-arm64')
-rw-r--r-- | compass-db/Dockerfile-arm64 | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/compass-db/Dockerfile-arm64 b/compass-db/Dockerfile-arm64 new file mode 100644 index 0000000..7b5755c --- /dev/null +++ b/compass-db/Dockerfile-arm64 @@ -0,0 +1,15 @@ +FROM ubuntu:trusty + +EXPOSE 3306 +ARG BRANCH=master + +RUN (apt-get update || true) && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server && \ + rm -rf /var/lib/apt/lists/* + +COPY entrypoint-arm64.sh /sbin/entrypoint.sh +RUN chmod 755 /sbin/entrypoint.sh + +VOLUME ["/var/lib/mysql"] + +CMD ["/sbin/entrypoint.sh"] |