Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
risq committed Jan 23, 2019
2 parents 88b51c2 + f4098ed commit 955ebf5
Show file tree
Hide file tree
Showing 6 changed files with 1,710 additions and 10 deletions.
3 changes: 3 additions & 0 deletions tools/integration-example/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env"]
}
12 changes: 12 additions & 0 deletions tools/integration-example/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM node:8

ENV NODE_ENV caas
ENV PORT 8080

COPY ./ /data
RUN cd /data \
&& npm install \
&& npm run build

WORKDIR /data
CMD ["npm", "start"]
Loading

0 comments on commit 955ebf5

Please sign in to comment.