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
@ -20,7 +20,7 @@ jobs:
run: |
wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
&& rm -rf /tmp/*
&& rm -rf /tmp/*
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v2
@ -38,4 +38,12 @@ jobs:
push: true
context: ./gitea-runner
file: ./gitea-runner/Node18xDockerfile
tags: git.fascinated.cc/fascinated/gitea-runner:node-18
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