Merge branch 'feat-chinese-account' of github.com:BaoXuebin/beancount-gs into feat-chinese-account
This commit is contained in:
commit
879148f110
Binary file not shown.
Binary file not shown.
10
dockerfile
10
dockerfile
|
|
@ -7,12 +7,18 @@ ENV GO111MODULE=on \
|
|||
PORT=80
|
||||
|
||||
WORKDIR /builder
|
||||
|
||||
COPY . .
|
||||
COPY public/icons ./public/default_icons
|
||||
RUN go build .
|
||||
|
||||
FROM python:latest
|
||||
RUN pip3 install beancount -i https://pypi.tuna.tsinghua.edu.cn/simple
|
||||
FROM python:3.10.2
|
||||
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
|
||||
COPY --from=builder ./builder/public ./public
|
||||
|
|
|
|||
Binary file not shown.
Loading…
Reference in New Issue