-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fix: If the organization is specified, it has to be used in the F…
…ROM clause for Dockerfile-academy-all
- Loading branch information
Dean Wampler
committed
Sep 4, 2020
1 parent
842c990
commit 54bf5b9
Showing
3 changed files
with
7 additions
and
3 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
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,8 @@ | ||
FROM deanwampler/academy-base:latest | ||
ARG VERSION | ||
ARG ORGANIZATION | ||
FROM ${ORGANIZATION}/academy-base:${VERSION} | ||
ARG VERSION | ||
LABEL maintainer="Anyscale Academy <[email protected]>" | ||
|
||
ADD academy-all/academy-$VERSION /root/academy-$VERSION | ||
RUN ls -al /root/academy-$VERSION | ||
ADD academy-all/academy-${VERSION} /root/academy-${VERSION} | ||
RUN ls -al /root/academy-${VERSION} |
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,5 +1,6 @@ | ||
FROM anyscale/ray:0.8.7 | ||
ARG VERSION | ||
ARG ORGANIZATION | ||
LABEL maintainer="Anyscale Academy <[email protected]>" | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|