Skip to content

Commit

Permalink
Using Java 17 for Dockerfile (#300)
Browse files Browse the repository at this point in the history
Java 17 fixes

Former-commit-id: 035b722
  • Loading branch information
silvanheller authored May 13, 2022
1 parent c504abe commit 9f05b83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:14-buster AS build
FROM openjdk:17-buster AS build

RUN apt-get update && \
apt-get install -y maven
Expand All @@ -7,7 +7,7 @@ RUN cd /cineast-src && \
./gradlew getExternalFiles && \
./gradlew shadowJar

FROM openjdk:14-slim-buster
FROM openjdk:17-slim-buster

RUN mkdir -p /opt/cineast

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Cineast is a multi-feature content-based multimedia retrieval engine. It is capa
Cineast is written in Java and uses [CottontailDB](https://github.com/vitrivr/cottontaildb) as a storage backend.

## Building Cineast
Cineast can be built using [Gradle](https://gradle.org/). Building and running it is as easy as
Cineast can be built using [Gradle](https://gradle.org/). It needs Java 17+. Building and running it is as easy as
```
$> git clone https://github.com/vitrivr/cineast.git
$> cd cineast
Expand Down Expand Up @@ -53,7 +53,7 @@ As a result, the OAS is stored at `docs/openapi.json`
## Prerequisites
### System dependencies
* git
* JDK 11 or higher
* JDK 17 or higher

### 3D rendering
For 3D rendering (required in order to support 3D models) you either need a video card or Mesa 3D. The JOGL library supports both. Rendering on Headless devices has been successfully tested with Xvfb. The following steps are required to enable
Expand Down

0 comments on commit 9f05b83

Please sign in to comment.