-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add an healthcheck to the gateway (close #104)
- Loading branch information
cnouguier
committed
Dec 2, 2019
1 parent
75fdb36
commit 01a5f3f
Showing
3 changed files
with
13 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
ARG TAG | ||
FROM express-gateway:$TAG | ||
|
||
# Install the dependencies (needed by exposeMetrics) | ||
RUN yarn global add [email protected] | ||
# Install the dependencies | ||
RUN yarn global add [email protected] aws-sdk | ||
|
||
# Override the consumers models | ||
COPY ./models /var/lib/eg/models | ||
|
@@ -17,6 +17,8 @@ COPY ./scripts/populate.js /var/lib/eg/populate.js | |
RUN mkdir -p /plugins | ||
COPY ./plugins /plugins | ||
|
||
WORKDIR /plugins | ||
|
||
|
||
|
||
|
||
|
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