移除多余的docker-start目录

This commit is contained in:
fxiang21
2019-11-07 19:51:44 +08:00
committed by pycook
parent 47767e22d8
commit f89169de96
5 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ WORKDIR /data/apps/cmdb
RUN yum install -y epel-release \
&& yum install -y python-pip \
&& pip install --no-cache-dir -r docker-start/requirements.txt
&& pip install --no-cache-dir -r docs/requirements.txt
CMD ["bash", "-c", "cp api/settings.py.example api/settings.py && sed -i 's#{user}:{password}@127.0.0.1:3306/{db}#:@127.0.0.1:3306/cmdb#g' api/settings.py && flask run"]