10 lines
363 B
Docker
10 lines
363 B
Docker
FROM python:3-alpine
|
|
# only copy necessary files for better cache
|
|
WORKDIR /home/
|
|
COPY requirements.txt refresh_cdn.py ./
|
|
RUN python3 --version
|
|
RUN pip3 install -r requirements.txt -i https://mirrors.tencent.com/pypi/simple/
|
|
ENV SECRET_ID AKIDWxDIC4QLkGuOgnq7WkmeLrfMsFYhi1FW
|
|
ENV SECRET_KEY PdkgR2TsBDAwYzGMHYnvzseFgTAgAUmt
|
|
ENTRYPOINT python3 /home/refresh_cdn.py
|