aboutsummaryrefslogtreecommitdiff
path: root/srcs/mysql/Dockerfile
blob: 5f36a6cc7382b6fd1769135876b4808ac46a4cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM alpine

RUN apk update && \
    apk upgrade && \
	apk add mysql mysql-client --no-cache


COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# COPY my.cnf /etc/my.cnf.d/ft_services.cnf

EXPOSE 3306

CMD ["/entrypoint.sh"]