mirror of
https://github.com/0-8-4/miui-auto-tasks.git
synced 2024-11-22 07:07:48 +00:00
remove pdm.lock and mirror settings in Dockerfile (#195)
create Dockerfile-cn for China users
This commit is contained in:
parent
31ff695304
commit
bd0804221e
@ -1,24 +1,18 @@
|
|||||||
FROM python:alpine
|
FROM python:alpine
|
||||||
|
|
||||||
RUN sed -i 's|https://dl-cdn.alpinelinux.org|http://mirrors.tuna.tsinghua.edu.cn|g' /etc/apk/repositories
|
|
||||||
|
|
||||||
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev
|
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev
|
||||||
|
|
||||||
RUN apk add --no-cache --virtual .build-app curl
|
RUN apk add --no-cache --virtual .build-app curl
|
||||||
|
|
||||||
RUN pip config set global.index-url 'https://mirrors.sustech.edu.cn/pypi/web/simple'
|
|
||||||
|
|
||||||
RUN curl -sSL https://pdm-project.org/install-pdm.py | python3 -
|
RUN curl -sSL https://pdm-project.org/install-pdm.py | python3 -
|
||||||
|
|
||||||
ENV PATH="/root/.local/bin:$PATH"
|
ENV PATH="/root/.local/bin:$PATH"
|
||||||
|
|
||||||
RUN pdm config pypi.url 'https://mirrors.sustech.edu.cn/pypi/web/simple'
|
|
||||||
|
|
||||||
WORKDIR /srv
|
WORKDIR /srv
|
||||||
|
|
||||||
COPY ./utils ./utils
|
COPY ./utils ./utils
|
||||||
|
|
||||||
COPY ./pyproject.toml ./pdm.lock ./miuitask.py ./
|
COPY ./pyproject.toml ./miuitask.py ./
|
||||||
|
|
||||||
RUN pdm install --prod
|
RUN pdm install --prod
|
||||||
|
|
||||||
|
31
Dockerfile-cn
Normal file
31
Dockerfile-cn
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
FROM python:alpine
|
||||||
|
|
||||||
|
RUN sed -i 's|https://dl-cdn.alpinelinux.org|http://mirrors.tuna.tsinghua.edu.cn|g' /etc/apk/repositories
|
||||||
|
|
||||||
|
RUN apk add --no-cache gcc musl-dev python3-dev libffi-dev
|
||||||
|
|
||||||
|
RUN apk add --no-cache --virtual .build-app curl
|
||||||
|
|
||||||
|
RUN pip config set global.index-url 'https://mirrors.sustech.edu.cn/pypi/web/simple'
|
||||||
|
|
||||||
|
RUN curl -sSL https://pdm-project.org/install-pdm.py | python3 -
|
||||||
|
|
||||||
|
ENV PATH="/root/.local/bin:$PATH"
|
||||||
|
|
||||||
|
RUN pdm config pypi.url 'https://mirrors.sustech.edu.cn/pypi/web/simple'
|
||||||
|
|
||||||
|
WORKDIR /srv
|
||||||
|
|
||||||
|
COPY ./utils ./utils
|
||||||
|
|
||||||
|
COPY ./pyproject.toml ./miuitask.py ./
|
||||||
|
|
||||||
|
RUN pdm install --prod
|
||||||
|
|
||||||
|
RUN { crontab -l; printf '%s\t%s\t%s\t%s\t%s\t%s\n' '0' '4' '*' '*' '*' '/usr/bin/env pdm run python /srv/miuitask.py'; } | crontab -
|
||||||
|
|
||||||
|
RUN apk del .build-app
|
||||||
|
|
||||||
|
VOLUME ["./data", "/srv/data"]
|
||||||
|
|
||||||
|
CMD ["/usr/sbin/crond", "-f"]
|
Loading…
Reference in New Issue
Block a user