-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
28 additions
and
113 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
name: Build ML platform image | ||
|
||
on: | ||
push: | ||
branches: | ||
- "OctUpgrade" | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Docker Build & Push Action | ||
uses: mr-smithers-excellent/[email protected] | ||
with: | ||
image: usatlas/ml-platform | ||
tags: oct_upgrade, ${{ github.sha }} | ||
registry: hub.opensciencegrid.org | ||
username: ${{ secrets.OSG_HARBOR_ROBOT_USER }} | ||
password: ${{ secrets.OSG_HARBOR_ROBOT_PASSWORD }} |
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,15 +1,12 @@ | ||
FROM ivukotic/ml_base:latest | ||
FROM ivukotic/ml_base:oct_upgrade | ||
|
||
LABEL maintainer Ilija Vukotic <[email protected]> | ||
|
||
############################# | ||
# Python 3 packages | ||
############################# | ||
RUN python3.6 -m pip --no-cache-dir install \ | ||
ipykernel \ | ||
uproot | ||
|
||
RUN python3.8 -m pip --no-cache-dir install \ | ||
RUN python3 -m pip --no-cache-dir install \ | ||
requests \ | ||
plumbum \ | ||
bokeh \ | ||
|
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 |
---|---|---|
|
@@ -2,35 +2,6 @@ FROM ivukotic/ml_base:latest | |
|
||
LABEL maintainer Ilija Vukotic <[email protected]> | ||
|
||
############################## | ||
# Python 2 packages | ||
############################## | ||
|
||
RUN pip2 --no-cache-dir install \ | ||
requests \ | ||
h5py \ | ||
tables \ | ||
ipykernel \ | ||
metakernel \ | ||
jupyter \ | ||
matplotlib \ | ||
numpy \ | ||
pandas \ | ||
Pillow \ | ||
scipy \ | ||
sklearn \ | ||
qtpy \ | ||
tqdm \ | ||
seaborn \ | ||
tensorflow-gpu \ | ||
keras \ | ||
elasticsearch \ | ||
gym \ | ||
baselines \ | ||
pydot \ | ||
uproot \ | ||
JSAnimation | ||
RUN python2 -m ipykernel.kernelspec | ||
|
||
############################# | ||
# Python 3 packages | ||
|