mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
17 lines
269 B
Docker
17 lines
269 B
Docker
#
|
|
# Dockerfile for mysql-proxy
|
|
#
|
|
|
|
FROM debian:jessie
|
|
MAINTAINER kev <noreply@easypi.info>
|
|
|
|
RUN set -xe \
|
|
&& apt-get update \
|
|
&& apt-get install -y mysql-proxy \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
EXPOSE 4040 4041
|
|
|
|
ENTRYPOINT ["mysql-proxy"]
|
|
CMD ["--help-all"]
|