Skip to content

Commit

Permalink
update Dockerfile to use new singer targets/libs, update setup.py for…
Browse files Browse the repository at this point in the history
… version compatibility (#6)
  • Loading branch information
cmcarthur committed Mar 1, 2017
1 parent ac5d7bd commit 03dc1ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN pip3 install --upgrade pip setuptools && \

ADD . /usr/src/tap-outbrain

RUN pip3 install -r requirements.txt
RUN pip3 install persist-stitch==0.3.1
RUN pip3 install --upgrade .
RUN pip3 install target-stitch==0.7.3

CMD [ "/bin/sh", "-c", "/usr/src/tap-outbrain/tap_outbrain.py -c /usr/src/tap-outbrain/config.json | persist-stitch sync -c /usr/src/tap-outbrain/persist.json" ]
CMD [ "/bin/sh", "-c", "tap-outbrain -c /usr/src/tap-outbrain/config.json | target-stitch -c /usr/src/tap-outbrain/persist.json" ]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_outbrain'],
install_requires=[
'singer-python==0.1.0',
'singer-python==0.2.1',
'backoff==1.3.2',
'requests==2.13.0',
'requests==2.12.4',
'python-dateutil==2.6.0'
],
entry_points='''
Expand Down

0 comments on commit 03dc1ca

Please sign in to comment.