-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfcb9b0
commit 5fb8704
Showing
6 changed files
with
28 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
FROM node | ||
|
||
FROM node:8-alpine | ||
|
||
WORKDIR /usr/src/app | ||
RUN apk update \ | ||
&& apk upgrade \ | ||
&& apk add bash curl | ||
|
||
COPY package*.json ./ | ||
ADD . /kuma-demo-app-fe | ||
WORKDIR /kuma-demo-app-fe | ||
|
||
RUN npm install | ||
RUN echo Node `node --version` \ | ||
&& echo NPM `npm --version` | ||
|
||
COPY . . | ||
RUN npm install -g yarn | ||
|
||
EXPOSE 8080 | ||
RUN yarn | ||
|
||
CMD [ "npm", "run", "serve" ] | ||
CMD yarn serve --mode ci |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM docker.elastic.co/logstash/logstash:7.4.0 | ||
|
||
RUN curl -s -o /usr/share/logstash/logstash-core/lib/log\ | ||
stash/outputs/loggly.rb https://raw.githubusercontent.com/psquickitjayant/logstash-output-loggly/master/lib/logstash/outputs/loggly.rb |
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