-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #LR-122 chore: Replaced learner with userorg (#1201)
- Loading branch information
1 parent
5808a96
commit 66e420d
Showing
18 changed files
with
219 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ FROM openjdk:8-jdk-alpine | |
MAINTAINER "Manojv" "[email protected]" | ||
WORKDIR /opt | ||
RUN apk update \ | ||
&& mkdir -p /opt/learner \ | ||
&& mkdir -p /opt/userorg \ | ||
&& apk add wget \ | ||
&& wget http://www-eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz \ | ||
&& tar -xvzf apache-maven-3.3.9-bin.tar.gz | ||
ENV M2_HOME /opt/apache-maven-3.3.9 | ||
ENV PATH ${M2_HOME}/bin:${PATH} | ||
COPY learner /opt/learner/ | ||
WORKDIR /opt/learner/services | ||
COPY userorg /opt/userorg/ | ||
WORKDIR /opt/userorg/services | ||
RUN mvn clean install -DskipTests | ||
WORKDIR /opt/learner/services/learning-service | ||
WORKDIR /opt/userorg/services/userorg-service | ||
CMD ["mvn", "play2:dist"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
set -eo pipefail | ||
|
||
build_tag=$1 | ||
name=learner_service | ||
name=userorg-service | ||
node=$2 | ||
org=$3 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.