forked from graphql-kit/graphql-faker
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial dockerfile * add docker option to README
- Loading branch information
1 parent
0fc5924
commit dc4d49e
Showing
3 changed files
with
19 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
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,14 @@ | ||
FROM node:8.8.1-alpine | ||
|
||
MAINTAINER James Kyburz "[email protected]" | ||
|
||
RUN apk --no-cache add --virtual native-deps \ | ||
git && \ | ||
npm install graphql-faker -g &&\ | ||
npm cache clean --force &&\ | ||
apk del native-deps | ||
|
||
ENTRYPOINT ["node", "/usr/local/bin/graphql-faker"] | ||
CMD [] | ||
|
||
EXPOSE 9002 |
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