-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #264 from WeBankPartners/dev
release v1.1.0
- Loading branch information
Showing
134 changed files
with
2,459 additions
and
11,808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM python:3.7-slim | ||
LABEL maintainer = "Webank CTB Team" | ||
RUN sed -i 's/deb.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list | ||
RUN sed -i 's/security.debian.org/mirrors.aliyun.com/g' /etc/apt/sources.list | ||
ADD artifacts-corepy/requirements.txt /tmp/requirements.txt | ||
ADD artifacts-corepy/dist/* /tmp/ | ||
RUN mkdir -p /etc/artifacts_corepy/ | ||
RUN mkdir -p /var/log/artifacts_corepy/ | ||
ADD artifacts-corepy/etc/* /etc/artifacts_corepy/ | ||
# Install && Clean up | ||
RUN apt update && apt-get -y install gcc python3-dev && \ | ||
pip3 install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com -r /tmp/requirements.txt && \ | ||
pip3 install /tmp/*.whl && \ | ||
rm -rf /root/.cache && apt autoclean && \ | ||
rm -rf /tmp/* /var/lib/apt/* /var/cache/* && \ | ||
apt purge -y `cat /var/log/apt/history.log|grep 'Install: '|tail -1| sed 's/Install://'| sed 's/\ /\n/g' | sed '/(/d' | sed '/)/d' | sed ':l;N;s/\n/ /;b l'` | ||
ADD build/start_all.sh /scripts/start_all.sh | ||
RUN chmod +x /scripts/start_all.sh | ||
CMD ["/bin/sh","-c","/scripts/start_all.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
artifacts-core/src/main/java/com/webank/plugins/artifacts/Application.java
This file was deleted.
Oops, something went wrong.
45 changes: 0 additions & 45 deletions
45
...core/src/main/java/com/webank/plugins/artifacts/auth/filter/DefaultJwtSsoTokenParser.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.