Update the dev dockerfile and build dockerfile to fix #60

This commit is contained in:
Gabe Kangas
2020-07-14 17:42:06 -07:00
parent a7a9ae0984
commit 738570563e
4 changed files with 27 additions and 13 deletions

View File

@@ -30,8 +30,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Docker image
run: docker build . --tag test-docker-image-build
- name: Copy default config file
run: cp config-example.yaml config.yaml
- name: Build Docker image
run: docker build -t owncast .
- name: Run Docker image
run: docker run -p 8080:8080 -p 1935:1935 test-docker-image-build
run: docker run -p 8080:8080 -p 1935:1935 owncast