wget error

This commit is contained in:
tiger.yan
2020-06-05 16:47:53 +08:00
committed by GitHub
parent 08f58cfb45
commit 83b0584dbb

View File

@@ -1,19 +1,23 @@
From centos:centos7
RUN yum install -y wget java mysql && \
RUN yum install -y wget java mysql python3 python3-devel pip3 mysql-devel gcc && \
yum clean all && \
rm -rf /var/cache/yum/*
RUN version=$(curl "https://github.com/actiontech/dble/releases/latest"|awk -F "/" '{print $8}') && \
wget -P /opt https://github.com/actiontech/dble/releases/download/$version%2Ftag/actiontech-dble-$version.tar.gz && \
tar zxvf /opt/actiontech-dble-$version.tar.gz -C /opt && \
wget https://github.com/actiontech/dble/blob/$version/tag/docker-images/quick-start/schema.xml -P /opt/dble/conf/ && \
wget https://github.com/actiontech/dble/blob/$version/tag/docker-images/quick-start/server.xml -P /opt/dble/conf/ && \
wget https://github.com/actiontech/dble/blob/$version/tag/docker-images/quick-start/rule.xml -P /opt/dble/conf/ && \
wget https://github.com/actiontech/dble/blob/$version/tag/docker-images/quick-start/wrapper.conf -P /opt/dble/conf/ && \
wget https://github.com/actiontech/dble/blob/$version/tag/docker-images/quick-start/docker_init_start.sh -P /opt/dble/bin/ && \
wget https://github.com/actiontech/dble/blob/$version/tag/docker-images/wait-for-it.sh -P /opt/dble/bin/ && \
chmod 777 /opt/dble/bin/* && \
rm -f /opt/actiontech-dble-$version.tar.gz
rm -f /opt/actiontech-dble-$version.tar.gz && \
pip3 install mysqlclient -i http://pypi.douban.com/simple --trusted-host pypi.douban.com && \
pip3 install six -i http://pypi.douban.com/simple --trusted-host pypi.douban.com && \
pip3 install coloredlogs -i http://pypi.douban.com/simple --trusted-host pypi.douban.com && \
pip3 install rsa -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
COPY quick-start/*.xml /opt/dble/conf/
COPY quick-start/wrapper.conf /opt/dble/conf/
COPY quick-start/docker_init_start.sh /opt/dble/bin/
COPY wait-for-it.sh /opt/dble/bin/
RUN chmod 777 /opt/dble/bin/*
VOLUME /opt/dble