This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: - **Added the .dockerignore:** when you in the Dockerfile do the `COPY ./APP` command it will copy all the file, also the .git folder, that are useless and so much big - **Added the docker-compose:** for a local usage or also to not use a docker command I had also add the docker-compose configuration - **Fix the Dockerfile:** the application need node > 8.x but in the dockerfile is used the node 6-alpine
- Loading branch information
Showing
3 changed files
with
22 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,9 @@ | ||
node_modules | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.MD | ||
.git | ||
.github | ||
.eslintrc | ||
.editorconfig | ||
.env.example |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: "3" | ||
|
||
services: | ||
hacktoberfest: | ||
build: . | ||
env_file: | ||
- .env | ||
ports: | ||
- 5000:5000 |