Skip to content

Commit

Permalink
Merge pull request #15 from OpenVisualCloud/wangjingz-patch-3
Browse files Browse the repository at this point in the history
Create ubuntu-build-docker.yml
  • Loading branch information
wangjingz authored Nov 29, 2024
2 parents ccb808e + f5dbc67 commit 22ea204
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ubuntu-build-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build Dockerfiles Ubuntu

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

build:
runs-on: ubuntu-latest
timeout-minutes: 180
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4
- name: Build the Docker image
# run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
run: |
sudo mkdir -p /etc/systemd/system/docker.service.d
sudo systemctl daemon-reload
sudo systemctl restart docker
cd ./ivsr_ffmpeg_plugin
./build_docker.sh --enable_ov_patch true --ov_version 2022.3

0 comments on commit 22ea204

Please sign in to comment.