Change linux build image.
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

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: steps:
- name: jpackage - name: jpackage
image: docker.io/bellsoft/liberica-openjdk-debian:17 image: docker.io/eclipse-temurin:17
environment: environment:
AUTH_TOKEN: # Gitea access token ENV variable AUTH_TOKEN: # Gitea access token ENV variable
from_secret: AUTH_TOKEN # Name of DroneCI secret exposed above 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