Initial commit.

This commit is contained in:
Stanislav Nikitin 2019-10-12 02:33:58 +05:00
commit 3de925e9c7
No known key found for this signature in database
GPG Key ID: 106900B32F8192EE
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea/

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM alpine:latest
RUN apk add --no-cache openjdk11-jre-headless openjdk11-jdk
VOLUME [ "/data" ]
ENTRYPOINT [ "/data/start.sh" ]

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Java container
This is a Java container built on top of Alpine Linux.