Skip to content

Commit 6ffa1a3

Browse files
committed
chore: update Dockerfile, License and README
1 parent dd02cc4 commit 6ffa1a3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
FROM beevelop/base
22

3+
# Install OpenJDK 17 and clean up in a single layer
34
RUN apt-get update && \
4-
apt-get -y install openjdk-17-jdk-headless && \
5+
apt-get install -y --no-install-recommends \
6+
openjdk-17-jdk-headless && \
57
apt-get clean && \
68
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
79
java -version

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2023 Maik Hummel
3+
Copyright (c) 2015-2025 Maik Hummel
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# Java / OpenJDK 17.0
1414

15-
> ⚠️ Due to the approaching EOL of Java 11 we are switching to Java 17. Please check your toolchain for compability before upgrading to the v2023.12.* or v2024.* releases.
15+
> ⚠️ Due to the approaching EOL of Java 11 we switched to Java 17. Please check your toolchain for compatibility before upgrading to the v2024.* releases.
1616
1717
### Pull, build or run this image
1818

@@ -24,7 +24,7 @@ docker pull beevelop/java:v2023.12.1
2424
docker run --rm --name beevelop -it beevelop/java:v2023.12.1 bash
2525

2626
# or build the image from GitHub
27-
docker build -t beevelop/java github.com/beevelop/docker-base
27+
docker build -t beevelop/java github.com/beevelop/docker-java
2828
```
2929

3030
### Or use as base image

0 commit comments

Comments
 (0)