Change linux build image.
This commit is contained in:
parent
c1d6b16126
commit
95914460ee
|
@ -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
4
Dockerfile
Normal 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
|
Loading…
Reference in a new issue