add docker build

This commit is contained in:
jrk 2024-04-29 02:35:08 +02:00
parent 45d8ec1f6a
commit 6a523f1aca
3 changed files with 53 additions and 0 deletions

4
.env.dist Executable file
View File

@ -0,0 +1,4 @@
DEBUG=false
PORT=5000
AUTOCONFIGURE_REVERSE_PROXY_MODE=false
AUTOCONFIGURE_LX_FILE=/home/pi/.config/lxsession/LXDE-pi/autostart # Replace by "./var/run/dummy" if not needed

48
.github/workflows/master.yml vendored Executable file
View File

@ -0,0 +1,48 @@
name: Build and Push Docker images
on:
push:
branches:
- main
paths:
- 'version.txt'
pull_request:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read Version
id: version
run: echo "::set-output name=VERSION::$(cat version.txt)"
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: jierka/obscreen:${{ steps.version.outputs.VERSION }}
platforms: linux/amd64, linux/arm64/v8, linux/arm/v7
- name: Create and push manifest
uses: docker/metadata-action@v3
with:
images: jierka/obscreen
tags: type=semver,pattern={{version}}

1
version.txt Executable file
View File

@ -0,0 +1 @@
1.1