-
Notifications
You must be signed in to change notification settings - Fork 65
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
[docker] Split dependencies from tuttleofx build #557
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
2ea2261
Build: install clint and argcomplete from apt
aoblet 6e44f22
Dockerfile set ubuntu to 16.04
aoblet b5bc3cf
Build dependencies storage optimization
aoblet 9c9bc24
Travis: fixed install of LibRaw dependency
ce55cd0
Docker: moved Dockerfiles to project root directory
a7204de
docker: split dependencies from tuttleofx build
fabiencastan 062c978
Travis: updated how to check if a script is run on Travis CI
d726b76
Travis: refactored how to skip build of dependencies if the cache exists
29a72b4
Travis: install python packages to run sam command line using pip
b7c2539
Travis: clean indentation of script to install dependencies
1f1fb35
Travis: fixed script to install dependencies
1331fee
[travis] fix inverted condition to use pip on travis
fabiencastan e6a3e59
[travis] test only the major version of python
fabiencastan 0247bd2
[travis] install pip3 before using it
fabiencastan b95c87b
Merge branch 'develop' of github.com:tuttleofx/TuttleOFX into docker
fabiencastan 3660432
[travis] fix bash if
fabiencastan ebdf369
[travis] update get-pip url
fabiencastan 003b44b
[travis] add missing quotes in bash if
fabiencastan 12c9379
[travis] use pip 3 url
fabiencastan d31be45
Merge branch 'develop' of github.com:tuttleofx/TuttleOFX into docker
fabiencastan d5a438d
[travis] libraw is compiled manually so don't install a concurrent ve…
fabiencastan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM tuttleofx/tuttleofx-env:python2-latest | ||
|
||
MAINTAINER TuttleOFX <tuttleofx-dev@googlegroups.com> | ||
|
||
RUN mkdir ${TUTTLEOFX_BUILD} && \ | ||
cd ${TUTTLEOFX_DEV} && \ | ||
git submodule update --init --recursive && \ | ||
${TUTTLEOFX_DEV}/tools/travis/build.sh && \ | ||
rm -rf ${TUTTLEOFX_BUILD} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM tuttleofx/tuttleofx-env:python3-latest | ||
|
||
MAINTAINER TuttleOFX <tuttleofx-dev@googlegroups.com> | ||
|
||
RUN mkdir ${TUTTLEOFX_BUILD} && \ | ||
cd ${TUTTLEOFX_DEV} && \ | ||
git submodule update --init --recursive && \ | ||
${TUTTLEOFX_DEV}/tools/travis/build.sh && \ | ||
rm -rf ${TUTTLEOFX_BUILD} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Including the python minor version is maybe clearer because it depends on the OS distrib image. Don't you think ?
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.
We only provide multiple images for the major versions, so it's easier to maintain like that.