summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 60a1c8eb7953e813266e714f6c6f8a519dcc93b0 (plain)
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"]