-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dockerfiles:bugfix - fixing error with diferent migration binary name (…
…#500) Signed-off-by: Nathan Martins <[email protected]> Co-authored-by: Wilian Gabriel <[email protected]>
- Loading branch information
1 parent
5477336
commit 2fb0855
Showing
5 changed files
with
11 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
FROM alpine | ||
|
||
COPY horusec-analytic / | ||
|
||
# migration bin name is used in horusec operator, any change should be reflected there. | ||
COPY horusec-analytic-migrate-v1-v2 / | ||
|
||
ENTRYPOINT ["./horusec-analytic"] |
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,5 +1,8 @@ | ||
FROM alpine | ||
|
||
COPY horusec-api / | ||
|
||
# migration bin name is used in horusec operator, any change should be reflected there. | ||
COPY horusec-api-migrate-v1-v2 / | ||
|
||
ENTRYPOINT ["./horusec-api"] |
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