-
Notifications
You must be signed in to change notification settings - Fork 2
Example Script Dockerfile #10
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
Conversation
| RUN python setup.py test | ||
| RUN python setup.py install | ||
|
|
||
| RUN ln -sf /usr/share/zoneinfo/UTC /etc/localtime |
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.
why are you setting this here and on line 6?
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.
The tests fail when run with the timezone set to UTC (#9) then the samples and events don't respect this timezone when sent in so they are 5 hours in the future if I don't set it back to UTC. I wanted to see if I was doing something incorrectly before I made the latter issue a GitHub issue.
Dockerfile
Outdated
| RUN ln -sf /usr/share/zoneinfo/UTC /etc/localtime | ||
|
|
||
| ENV API_URL https://api.app.netuitive.com/ingest | ||
| ENV CUSTOM_API_KEY change-me |
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.
can your changes this to change-me-apikey or something else that has apikey in it? this will help with blocking misconfigured clients.
No description provided.