Skip to content

Commit

Permalink
Rename to webapp
Browse files Browse the repository at this point in the history
  • Loading branch information
afedulov committed Nov 4, 2019
1 parent 2ff6c9b commit 9905b1c
Show file tree
Hide file tree
Showing 66 changed files with 19 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions backend-frontend/.gitignore → webapp/.gitignore
Expand Up @@ -55,3 +55,4 @@ node_modules/
.vscode
.project
/bin
.gradle
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions backend-frontend/pom.xml → webapp/pom.xml
Expand Up @@ -5,11 +5,11 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.ververica</groupId>
<artifactId>demo-backend</artifactId>
<artifactId>demo-fraud-webapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>demo-backend-frontend</name>
<name>webapp</name>

<parent>
<groupId>org.springframework.boot</groupId>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions webapp/webapp.Dockerfile
@@ -0,0 +1,16 @@
# Start with a base image containing Java runtime
FROM openjdk:8-jdk-alpine

# Add Maintainer Info
LABEL maintainer="alexander@ververica.com"

# Add a volume pointing to /tmp
VOLUME /tmp

# Make port 5656 available to the world outside this container
EXPOSE 5656

ADD target/demo-backend-*.jar demo-backend.jar

# Run the jar file
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-Dspring.profiles.active=dev","-jar","/demo-backend.jar"]

0 comments on commit 9905b1c

Please sign in to comment.