Initial commit.

This commit is contained in:
Stanislav Nikitin 2019-10-12 04:00:55 +05:00
commit 7d1da6a76e
No known key found for this signature in database
GPG Key ID: 106900B32F8192EE
4 changed files with 23 additions and 0 deletions

15
.drone.yml Normal file
View File

@ -0,0 +1,15 @@
---
kind: pipeline
type: docker
name: build
steps:
- name: docker
image: plugins/docker
settings:
username:
from_secret: dockerhub_user
password:
from_secret: dockerhub_password
repo: pztrn/java8
auto_tag: true

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 bash openjdk8 openjdk8-jre
VOLUME [ "/data" ]
ENTRYPOINT [ "/data/start.sh" ]

0
README.md Normal file
View File