Releasing requires additional tools inside the container that does the releasing process, whether to maven central or artifactory. Resolves #1353.
6 lines
139 B
Docker
6 lines
139 B
Docker
FROM eclipse-temurin:17.0.6_10-jdk-focal
|
|
|
|
RUN apt-get update && apt-get install -y gpg
|
|
|
|
RUN apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* |