-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds Dockerfile #175
Adds Dockerfile #175
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @ivotron
Some comments inline. An entry in the documentation needs to be added.
Dockerfile
Outdated
@@ -0,0 +1,6 @@ | |||
FROM python:2.7 | |||
|
|||
RUN pip install enos && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enos should be installed from the corresponding git revision.
This could be something like :
COPY . /tmp/enos
WORKDIR /tmp/enos
RUN pip install .
@msimonin thanks for the feedback. I had an issue with Also, can you please point me to where in the docs I should add an entry describing how to use the image? |
@@ -35,7 +35,7 @@ def read(fname): | |||
'influxdb==4.0.0', | |||
'docopt>=0.6.2,<0.7.0', | |||
'httplib2==0.9.2', | |||
'python-dateutil==2.2', | |||
'python-dateutil>=2.2', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:+1
A new chapter (a new file) could be named Note that this change will probably be backported on |
ping @ivotron ? |
@ivotron I'm closing this, |
Usage:
fixes #173