Skip to content

Commit

Permalink
Update docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf authored Nov 4, 2024
1 parent 38dc848 commit 194a702
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,20 @@ on:

jobs:

build:
build-gpu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build the GPU Docker image
run: docker build . --file docker/Dockerfile.gpu --tag fishsense-lite:gpu-$(date +%s)

build-cpu:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build the CPU Docker image
run: docker build . --file docker/Dockerfile.cpu --tag fishsense-lite:cpu-$(date +%s)

0 comments on commit 194a702

Please sign in to comment.