add action to build docker image
This commit is contained in:
parent
7d78589510
commit
bfe48494c1
1 changed files with 13 additions and 0 deletions
13
.github/workflows/docker-image.yml
vendored
Normal file
13
.github/workflows/docker-image.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build the Docker image
|
||||
run: docker build . --file docker/Dockerfile -t lbry/scribe:master
|
Loading…
Reference in a new issue