blob: 6bab977c2b4e3d0a5ebc289b94370b2e1137a59e [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
FROM java:7
MAINTAINER ShardingSphere "dev@shardingsphere.incubator.apache.org"
ENV LOCAL_PATH /sharding-proxy
ENV HEADER_NAME apache
COPY sharding-proxy-bin.tar.gz .
COPY ./tools/wait-for-it.sh /usr/local/bin/
COPY ./tools/docker-entrypoint.sh /usr/local/bin/
RUN chmod 777 /usr/local/bin/wait-for-it.sh
RUN chmod 777 /usr/local/bin/docker-entrypoint.sh
RUN tar -xzvf sharding-proxy-bin.tar.gz
RUN mv ${HEADER_NAME}*-bin $LOCAL_PATH
COPY ./driver/mysql-connector-java-5.1.47.jar ${LOCAL_PATH}/lib/mysql-connector-java-5.1.47.jar
RUN rm -f sharding-proxy-bin.tar.gz
#/usr/local/bin/wait-for-it.sh sharding-mysql:3306 --
ENTRYPOINT /sharding-proxy/bin/start.sh $PORT && tail -f /sharding-proxy/logs/stdout.log