aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: eba5569d78a34566755630408c15842d20ca79cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM ubuntu:trusty

EXPOSE 3306/tcp

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