Update docker images, fixed docker nvidia opencl support, updated all requirements #14
Workflow file for this run
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
name: Build Docker image | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: [main] | |
paths: | |
- "src/**" | |
pull_request: | |
paths: | |
- "src/**" | |
jobs: | |
build-alpine-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Build alpine image 🔨 | |
uses: docker/build-push-action@v4 | |
with: | |
context: src | |
build-nvidia-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Build nvidia image 🔨 | |
uses: docker/build-push-action@v4 | |
with: | |
file: src/Dockerfile.nvidia | |
context: src |