Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrong format of application.properties file #130

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ ARG SCALA_VERSION=2.12
LABEL org.opencontainers.image.authors="ABSA"

# Copy Spring application properties
COPY $CONFIG /opt/application.yaml
COPY $CONFIG /opt/application.properties

# deploy as root application in tomcat
COPY ${AS_PREFIX}/target/jvm-${SCALA_VERSION}/*.war /usr/local/tomcat/webapps/ROOT.war

ENV SPRING_CONFIG_LOCATION=/opt/application.yaml
ENV SPRING_CONFIG_LOCATION=/opt/application.properties
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the correct location?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Zejnilovic used the same approach as in Login Service


ENV http_proxy=$BUILD_PROXY
ENV https_proxy=$BUILD_PROXY
Expand Down
Loading