fixbug
This commit is contained in:
parent
a36aed000b
commit
0c5b866064
|
|
@ -21,6 +21,7 @@ jobs:
|
|||
# generate Docker tags based on the following events/attributes
|
||||
tags: |
|
||||
type=semver,pattern={{version}}
|
||||
type=ref,event=branch
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
# 构建 beancount
|
||||
FROM python:latest as beancount_builder
|
||||
FROM python:3.6.15 as beancount_builder
|
||||
WORKDIR /build
|
||||
ENV PATH "/app/bin:$PATH"
|
||||
RUN python3 -mvenv /app
|
||||
RUN wget https://github.com/beancount/beancount/archive/refs/tags/2.3.5.tar.gz
|
||||
RUN tar -zxvf 2.3.5.tar.gz
|
||||
RUN python3 -m pip install ./beancount-2.3.5
|
||||
RUN python3 -m pip install ./beancount-2.3.5 -i https://mirrors.aliyun.com/pypi/simple/
|
||||
RUN find /app -name __pycache__ -exec rm -rf -v {} +
|
||||
|
||||
# 构建 beancount-gs
|
||||
|
|
@ -23,7 +23,7 @@ COPY public/icons ./public/default_icons
|
|||
RUN go build .
|
||||
|
||||
# 镜像
|
||||
FROM python:3.10-alpine
|
||||
FROM python:3.6.15-alpine
|
||||
|
||||
COPY --from=beancount_builder /app /app
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue