-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #322 from rsksmart/vovchyk/docker-upd
build: update Dockerfile & reproducible.yml
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM openjdk:8-jdk-slim-buster AS build | ||
FROM eclipse-temurin:17-jdk AS build | ||
|
||
ARG RSK_RELEASE | ||
ENV RSK_VERSION $RSK_RELEASE | ||
|
@@ -20,7 +20,7 @@ RUN gpg --keyserver https://secchannel.rsk.co/SUPPORT.asc --recv-keys 1DC9157991 | |
./gradlew --no-daemon clean build -x test && \ | ||
cp "build/libs/federate-node-$RSK_VERSION-all.jar" rsk.jar | ||
|
||
FROM openjdk:8-jre-slim-buster | ||
FROM eclipse-temurin:17-jre | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
RUN useradd -ms /sbin/nologin -d /var/lib/rsk rsk | ||
|