Skip to content

Commit 3fd7953

Browse files
committedMar 20, 2024·
add echopype.yml
1 parent c361dc2 commit 3fd7953

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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

‎images/echopype/Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM openscapes/python:4f340eb
2+
3+
RUN conda install -c conda-forge cmocean
4+
RUN conda install -c conda-forge echopype

0 commit comments

Comments
 (0)