Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/docker-ghcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and publish Docker image

on:
workflow_dispatch:
push:
branches:
- master
- main

permissions:
contents: read
packages: write

env:
IMAGE_NAME: docker-mediathekview-webinterface

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/tobasium/docker-mediathekview-webinterface:latest
ghcr.io/tobasium/docker-mediathekview-webinterface:14.5.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM jlesage/baseimage-gui:debian-12-v4

ENV USER_ID=0 GROUP_ID=0 TERM=xterm

ENV MEDIATHEK_VERSION=14.4.2
ENV MEDIATHEK_VERSION=14.5.0

# Refresh apt cache
RUN apt-get update \
Expand Down