-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-2557: Updating base docker image
- Loading branch information
Swati Gogia
authored and
Swati Gogia
committed
Feb 13, 2023
1 parent
bff83e9
commit 7e8eb8e
Showing
2 changed files
with
3 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
branches: | ||
- master | ||
- 'release-*' | ||
- BAH-2557 | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+' | ||
|
||
|
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,5 +1,6 @@ | ||
FROM httpd:2.4-alpine | ||
FROM amazoncorretto:8 | ||
|
||
RUN yum -y install unzip | ||
ADD dist/implementer_interface.zip /etc/implementer-interface/ | ||
RUN unzip -d /usr/local/apache2/htdocs/implementer-interface /etc/implementer-interface/implementer_interface.zip | ||
RUN rm -r /etc/implementer-interface |