forked from hackohio/quill
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add docker support * package-lock.json changed? * add documentation for deployment * WIP. Add docker compose and new dockerfile The application launches but it can't connect to the mongoDB started in docker. WIP. * did final on package-lock before merge * Back to a standard docker file * Simplify * Add gulp buidl * correct executable path for gulp and use slim node image * Create rebase.yml * nevermind * conform to eslint standards * revert eslint changes
- Loading branch information
1 parent
de635cc
commit 4ab992d
Showing
4 changed files
with
50 additions
and
12 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,5 @@ | ||
node_modules/ | ||
app/client/build/ | ||
app/client/plugins/ | ||
*.log | ||
.env |
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,13 @@ | ||
FROM node:10.17.0-buster-slim | ||
|
||
WORKDIR /usr/app/src | ||
EXPOSE 3000 | ||
|
||
# Load Source | ||
COPY . . | ||
|
||
# Install node_modules | ||
RUN npm install | ||
RUN ./node_modules/.bin/gulp build | ||
|
||
CMD node app.js |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.