1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/mysql-proxy/Dockerfile

17 lines
268 B
Docker
Raw Normal View History

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