项目上传

This commit is contained in:
付明卫
2019-12-20 15:38:14 +08:00
parent f805e50d78
commit 1126a76754
10 changed files with 602 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Start python3.6.9-alpine3.10 to build python:unitest
FROM python:3.6.9-alpine3.10
ADD unittest /root/unittest
RUN sed -i s@/dl-cdn.alpinelinux.org/@/mirrors.ustc.edu.cn/@g /etc/apk/repositories \
&& apk update \
&& apk add curl-dev gcc libc-dev curl gzip\
&& pip3 install pycurl
WORKDIR /root/unittest
CMD tail -f /dev/null