File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 1
- FROM openjdk:11-jdk-slim
1
+ FROM eclipse-temurin:21
2
2
RUN apt-get update && apt-get install -y \
3
3
curl \
4
4
tesseract-ocr \
You can’t perform that action at this time.
0 commit comments