summaryrefslogtreecommitdiffstats
path: root/compass-db/Dockerfile
blob: a7208a96d63408d575eafbf1ff5f1d8fca6b4a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
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"]