File tree 2 files changed +34
-0
lines changed
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Docker Image CI echopype
2
+
3
+ on :
4
+ workflow_dispatch : null
5
+ push :
6
+ branches : main
7
+ paths :
8
+ - ' images/echopype/**'
9
+ - ' .github/workflows/docker-image-echopype.yml'
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ permissions : write-all
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ - name : Login to GitHub Container Registry
17
+ if : github.repository == 'nmfs-opensci/container-images'
18
+ uses : docker/login-action@v1
19
+ with :
20
+ registry : ghcr.io
21
+ username : ${{github.actor}}
22
+ password : ${{secrets.GITHUB_TOKEN}}
23
+ - name : Build the Docker image
24
+ if : github.repository == 'nmfs-opensci/container-images'
25
+ run : |
26
+ docker build images/echopype -f images/echopype/Dockerfile --tag ghcr.io/nmfs-opensci/container-images/echopype:latest
27
+ - name : Publish
28
+ if : github.repository == 'nmfs-opensci/container-images'
29
+ run : |
30
+ docker push ghcr.io/nmfs-opensci/container-images/echopype:latest
Original file line number Diff line number Diff line change
1
+ FROM openscapes/python:4f340eb
2
+
3
+ RUN conda install -c conda-forge cmocean
4
+ RUN conda install -c conda-forge echopype
You can’t perform that action at this time.
0 commit comments