Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Andrew <mail@timothyandrew.net>2017-05-08 12:02:14 +0300
committerTimothy Andrew <mail@timothyandrew.net>2017-05-08 12:02:14 +0300
commita03f8f143dc2256f89c8ebed8a7a07a1ba1792e7 (patch)
tree8b18ded4cc99b0605be4ffaeb283331dc538e572 /vendor/Dockerfile/OpenJDK-alpine.Dockerfile
parent6386e42f06bb26746a9168a8c81ad03fa0356dbd (diff)
Update gitignore, dockerfile, and license templates for 9.2.
Diffstat (limited to 'vendor/Dockerfile/OpenJDK-alpine.Dockerfile')
-rw-r--r--vendor/Dockerfile/OpenJDK-alpine.Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/Dockerfile/OpenJDK-alpine.Dockerfile b/vendor/Dockerfile/OpenJDK-alpine.Dockerfile
new file mode 100644
index 00000000000..ee853d9cfd2
--- /dev/null
+++ b/vendor/Dockerfile/OpenJDK-alpine.Dockerfile
@@ -0,0 +1,8 @@
+FROM openjdk:8-alpine
+
+COPY . /usr/src/myapp
+WORKDIR /usr/src/myapp
+
+RUN javac Main.java
+
+CMD ["java", "Main"]