From 708d9951a16c89795c4ae8f560bfffde6f807e23 Mon Sep 17 00:00:00 2001 From: darkatse Date: Tue, 19 Apr 2022 18:30:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DDockerfile=E7=9A=84=E6=9D=83?= =?UTF-8?q?=E9=99=90=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3ec3b53..0b88053 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ FROM python:3-alpine -LABEL maintainer="mailto@wolfbolin.com" +LABEL maintainer="x.yangtze.river@gmail.com" ENV CRON_SIGNIN='30 9 * * *' ENV MULTI=TRUE ENV TZ=Asia/Shanghai -RUN adduser app -D RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories \ && apk add --no-cache tzdata @@ -12,7 +11,6 @@ WORKDIR /tmp ADD requirements.txt ./ RUN pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt -USER app WORKDIR /var/app COPY . /var/app