diff options
author | wasala <przemyslaw.wasala@nokia.com> | 2018-03-21 14:19:43 +0100 |
---|---|---|
committer | wasala <przemyslaw.wasala@nokia.com> | 2018-03-21 14:29:30 +0100 |
commit | ec0cf09f662c44f2ac115166ce61020202ac3d26 (patch) | |
tree | 82738cca6fc4b62bb7e1d00049f844d52f895f66 /Dockerfile | |
parent | b5c3f70c873bedbb37a3220090812c099f88deab (diff) |
Initial structure of pnf-registration-handler
Change-Id: I38bc1a37b98243dc887518cdd10693af4bf214dd
Issue-ID: DCAEGEN2-407
Signed-off-by: wasala <przemyslaw.wasala@nokia.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..1c29b2b7 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +#This image is sample template only. +FROM azul/zulu-openjdk:8u152 + +MAINTAINER Przemysław Wąsala "przemyslaw.wasala@nokia.com" + +COPY target/pnf-registration-handler-1.0.0-SNAPSHOT.jar /opt/app/Prh/ +WORKDIR /opt/app/Prh + +ENV HOME /opt/app/Prh +ENV JAVA_HOME /usr +#RUN apt-get update && apt-get install -y curl vim + +EXPOSE 8080 + +CMD [ "java", "-jar", "pnf-registration-handler-1.0.0-SNAPSHOT.jar" ]
\ No newline at end of file |