From 650f1e955fd786f3ccea3d302026e84436490d2a Mon Sep 17 00:00:00 2001 From: BaoXuebin Date: Mon, 10 Apr 2023 02:14:01 +0800 Subject: [PATCH] upgrade python version --- dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index aa3376a..2ed1d9f 100644 --- a/dockerfile +++ b/dockerfile @@ -1,5 +1,5 @@ # 构建 beancount -FROM python:3.6.15 as beancount_builder +FROM python:3.7.16 as beancount_builder WORKDIR /build ENV PATH "/app/bin:$PATH" RUN python3 -mvenv /app @@ -23,7 +23,7 @@ COPY public/icons ./public/default_icons RUN go build . # 镜像 -FROM python:3.6.15-alpine +FROM python:3.7.16-alpine COPY --from=beancount_builder /app /app