-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #428 from reyoung/feature/add_check_env_for_docker
Add checkout name for Dockerfile
- Loading branch information
Showing
14 changed files
with
14 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=OFF | ||
ENV IS_DEVEL=OFF | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=OFF | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=ON | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=OFF | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=OFF | ||
ENV IS_DEVEL=OFF | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=OFF | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=ON | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM ubuntu:14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=OFF | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=ON | ||
ENV IS_DEVEL=OFF | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=ON | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=ON | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=ON | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=ON | ||
ENV IS_DEVEL=OFF | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=ON | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=ON | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM nvidia/cuda:7.5-cudnn5-devel-ubuntu14.04 | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=ON | ||
ENV IS_DEVEL=ON | ||
ENV WITH_DEMO=OFF | ||
|
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
FROM PADDLE_BASE_IMAGE | ||
MAINTAINER PaddlePaddle Dev Team <[email protected]> | ||
COPY build.sh /root/ | ||
ENV GIT_CHECKOUT=develop | ||
ENV WITH_GPU=PADDLE_WITH_GPU | ||
ENV IS_DEVEL=PADDLE_IS_DEVEL | ||
ENV WITH_DEMO=PADDLE_WITH_DEMO | ||
|
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