File: Dockerfile

package info (click to toggle)
python-ofxclient 2.0.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 256 kB
  • sloc: python: 1,322; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:2.7-onbuild
MAINTAINER David Bartle <captindave@gmail.com>

RUN mkdir -p /root/.local/share/python_keyring
RUN mkdir -p /export

COPY keyringrc.cfg /root/.local/share/python_keyring

RUN python setup.py install

VOLUME /export
VOLUME /root/.local/share/python_keyring

# so that ofxclient will download to the shared volume by default
WORKDIR /export

ENTRYPOINT ["ofxclient", "-c", "/export/ofxconfig.ini"]