Skip to content

Commit f172ba6

Browse files
committed
move to java 21
1 parent e2400e8 commit f172ba6

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.github/workflows/release.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build and Release new docker images
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- master
7+
8+
permissions:
9+
contents: read
10+
actions: read
11+
checks: write
12+
packages: write
13+
14+
jobs:
15+
build:
16+
name: Build and Release Docker host
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v2
21+
- name: Login to GHCR
22+
uses: docker/login-action@v2
23+
with:
24+
registry: ghcr.io
25+
username: ${{ github.repository_owner }}
26+
password: ${{ secrets.GITHUB_TOKEN }}
27+
- name: Build and push Showcase Server
28+
uses: docker/build-push-action@v4
29+
with:
30+
context: .
31+
push: true
32+
tags: ghcr.io/${{ github.repository_owner }}/bw-zuni-docker-host:latest
33+

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:11-jdk-slim
1+
FROM eclipse-temurin:21
22
RUN apt-get update && apt-get install -y \
33
curl \
44
tesseract-ocr \

0 commit comments

Comments
 (0)