Skip to content

Commit

Permalink
Oct_upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
ivukotic committed Oct 22, 2024
1 parent 4f6b242 commit 53ad254
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 113 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/condor.yaml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/harbor.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name: Build ML platform image
on:
push:
branches:
- "master"
- "OctUpgrade"

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.2.1

- name: Docker Build & Push Action
uses: mr-smithers-excellent/docker-build-push@v6.2
uses: mr-smithers-excellent/docker-build-push@v6.4
with:
image: ivukotic/ml_platform
tags: latest, ${{ github.sha }}
tags: oct_upgrade, ${{ github.sha }}
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
22 changes: 22 additions & 0 deletions .github/workflows/oct_upgrade_harbor.yaml
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 }}
7 changes: 2 additions & 5 deletions Dockerfile
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 \
Expand Down
29 changes: 0 additions & 29 deletions OpenAi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 53ad254

Please sign in to comment.