Merge branch 'feat-chinese-account' of github.com:BaoXuebin/beancount-gs into feat-chinese-account

This commit is contained in:
BaoXuebin 2022-03-11 23:50:00 +08:00
commit 879148f110
4 changed files with 8 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -7,12 +7,18 @@ ENV GO111MODULE=on \
PORT=80 PORT=80
WORKDIR /builder WORKDIR /builder
COPY . . COPY . .
COPY public/icons ./public/default_icons COPY public/icons ./public/default_icons
RUN go build . RUN go build .
FROM python:latest FROM python:3.10.2
RUN pip3 install beancount -i https://pypi.tuna.tsinghua.edu.cn/simple RUN python3 -m pip install -U pip setuptools wheel -i https://pypi.tuna.tsinghua.edu.cn/simple
COPY ./beancount-2.3.4-cp310-cp310-linux_x86_64.whl /tmp
COPY ./fava-1.18-py3-none-any.whl /tmp
RUN pip3 install /tmp/beancount-2.3.4-cp310-cp310-linux_x86_64.whl /tmp/fava-1.18-py3-none-any.whl -i https://pypi.tuna.tsinghua.edu.cn/simple
WORKDIR /app WORKDIR /app
COPY --from=builder ./builder/public ./public COPY --from=builder ./builder/public ./public

BIN
fava-1.18-py3-none-any.whl Normal file

Binary file not shown.