File: Dockerfile

package info (click to toggle)
ofxstatement-plugins 20181208
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 4,064 kB
  • sloc: python: 7,004; xml: 1,027; makefile: 135; sh: 84
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"]