mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-04-04 22:04:25 +02:00
17 lines
260 B
Docker
17 lines
260 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
|
||
|
|
||
|
ENTRYPOINT ["mysql-proxy"]
|
||
|
CMD ["--help"]
|