generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* deploy middleware to demo env * wip * wip * change image * added default paramaters to dev file * added default values for dev-env file * formatting * added bash exp synthax * updates to db, vault and networking * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * add output variables for db password, username, db name to middleware_api * remove commented out code and update middleware-api or app_service module with variables * minor updates * update app_settings in the middleware * removed unused variables * conatiner change * expose to 8081 * rm continuous * amd64 * add expose fro port 80 in dockerfile * go back to port 8080 and rm the port flag in the cmd * wip * add new app setting vars * deploy middleware to dev * deploy middleware to dev * deploy middleware to dev * deploy middleware to dev * push new var to frontend * push new var to frontend * push new var to frontend * push new var to frontend * push new var to frontend * wip * clean * deploy to middleware with CORS change * deploy to middleware with CORS change * deploy front to dev * wip * wip * wip * clean * push --------- Co-authored-by: Administrator <[email protected]> Co-authored-by: Arindam Kulshi <[email protected]> Co-authored-by: marycrawford <[email protected]>
- Loading branch information
1 parent
c75061f
commit 8164f48
Showing
13 changed files
with
32 additions
and
30 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
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 |
---|---|---|
@@ -1,4 +1,14 @@ | ||
FROM amazoncorretto:17 | ||
ENV HOME=/app | ||
RUN mkdir -p $HOME | ||
WORKDIR $HOME | ||
# Use a base image with Java and Gradle | ||
FROM openjdk:17-slim | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Copy the project files | ||
COPY . . | ||
|
||
RUN chmod +x ./gradlew | ||
|
||
EXPOSE 8080 | ||
|
||
ENTRYPOINT [ "./gradlew", "bootRun" ] |
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
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