File: Dockerfile

package info (click to toggle)
ofxstatement-plugins 20210310
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,964 kB
  • sloc: python: 7,219; xml: 1,027; makefile: 167; sh: 92
file content (13 lines) | stat: -rw-r--r-- 421 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.6-alpine

LABEL io.whalebrew.config.name        'ofxstatement-lfs'
LABEL io.whalebrew.config.working_dir '$PWD'
LABEL io.whalebrew.config.environment '["OFX_ACCOUNT_ID", "OFX_BANK_ID", "OFX_CURRENCY_ID"]'

COPY requirements.txt /tmp
RUN  pip install -r /tmp/requirements.txt

COPY dist/ofxstatement-lfs*.tar.gz /tmp
RUN  pip install /tmp/ofxstatement-lfs*.tar.gz

ENTRYPOINT ["/usr/local/bin/ofxstatement"]