summaryrefslogtreecommitdiffstats
path: root/compass-db/Dockerfile
blob: 82871b9dc125a13fc3d510afb91ccafad8645a3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:trusty

EXPOSE 3306
ARG BRANCH=master

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"]