-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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 #3 from awslabs/master
Sync.
- Loading branch information
Showing
710 changed files
with
174,969 additions
and
912 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
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,16 @@ | ||
FROM ubuntu:16.04 | ||
|
||
MAINTAINER Amazon SageMaker Examples <[email protected]> | ||
|
||
RUN apt-get -y update && apt-get install -y --no-install-recommends \ | ||
wget \ | ||
r-base \ | ||
r-base-dev \ | ||
ca-certificates | ||
|
||
RUN R -e "install.packages(c('dbscan', 'plumber'), repos='https://cloud.r-project.org')" | ||
|
||
COPY dbscan.R /opt/ml/dbscan.R | ||
COPY plumber.R /opt/ml/plumber.R | ||
|
||
ENTRYPOINT ["/usr/bin/Rscript", "/opt/ml/dbscan.R", "--no-save"] |
Oops, something went wrong.