add java 17
Some checks failed
docker (ubuntu-latest, 2.38.4)

This commit is contained in:
Lee 2023-03-30 21:52:55 +01:00
parent 42347c4b7e
commit 51b9be42ba
2 changed files with 20 additions and 5 deletions

@ -3,14 +3,14 @@ name: Publish
on:
push:
branches:
- 'master'
- "master"
jobs:
docker:
strategy:
matrix:
arch: ['ubuntu-latest']
git-version: ['2.38.4']
arch: ["ubuntu-latest"]
git-version: ["2.38.4"]
runs-on: ${{ matrix.arch }}
steps:
- name: checkout
@ -39,3 +39,11 @@ jobs:
context: ./gitea-runner
file: ./gitea-runner/Node18xDockerfile
tags: git.fascinated.cc/fascinated/gitea-runner:node-18
- name: Build and push (Java 17)
uses: docker/build-push-action@v4
with:
push: true
context: ./gitea-runner
file: ./gitea-runner/Java17Dockerfile
tags: git.fascinated.cc/fascinated/gitea-runner:java-17

@ -0,0 +1,7 @@
FROM docker:stable
# Install packages
RUN apk add --no-cache curl wget git
# Install Jav 17
RUN apk add openjdk17-jre --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main --allow-untrusted