Hi team, what is the latest version of Prisma doc...
# orm-help
o
Hi team, what is the latest version of Prisma docker image. 1.26 is the latest tag in docker hub. Also is it possible to modify the image i.e upgrade the Java libraries to newer versions because vulnerability scan indicates the use of older versions of libraries
a
https://github.com/prisma/prisma/releases <- you should find all the versions here
m
Docker hub always contains the latest versions. So
1.26
is indeed the latest one. You can file a PR to upgrade those libraries if you want to. What kind of vulnerabilities did you find?
o
I downloaded the source code and changed the library versions in build.sbt. can I generate an image for that ?
m
Yes there is an sbt task to do so. But first you should check whether it still compiles.
You compile with
sbt compile
and images are built with
sbt docker
.