1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/mysql-proxy/Dockerfile

17 lines
268 B
Docker
Raw Normal View History

2016-05-09 13:33:08 +00:00
#
# Dockerfile for mysql-proxy
#
FROM debian:jessie
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-05-09 13:33:08 +00:00
RUN set -xe \
&& apt-get update \
&& apt-get install -y mysql-proxy \
&& rm -rf /var/lib/apt/lists/*
2016-05-09 15:28:47 +00:00
EXPOSE 4040 4041
2016-05-09 13:33:08 +00:00
ENTRYPOINT ["mysql-proxy"]
2016-05-09 15:28:47 +00:00
CMD ["--help-all"]