Change linux build image.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Mark Nellemann 2023-08-16 10:40:02 +02:00
parent c1d6b16126
commit 95914460ee
2 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,7 @@ type: docker
steps:
- name: jpackage
image: docker.io/bellsoft/liberica-openjdk-debian:17
image: docker.io/eclipse-temurin:17
environment:
AUTH_TOKEN: # Gitea access token ENV variable
from_secret: AUTH_TOKEN # Name of DroneCI secret exposed above

4
Dockerfile Normal file
View File

@ -0,0 +1,4 @@
FROM docker.io/eclipse-temurin:17 AS build
COPY . .
RUN apt update && apt install -y dpkg-dev rpm
RUN ./gradlew clean build jpackage