-
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.
Include yarn folder in docker import step
- Loading branch information
1 parent
9f49b2d
commit 85455bc
Showing
1 changed file
with
14 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 |
---|---|---|
@@ -1,44 +1,46 @@ | ||
# All node_modules directories | ||
**/node_modules | ||
|
||
\*\*/node_modules | ||
|
||
# All secrets | ||
**/.env.local | ||
**/.env.*.local | ||
|
||
# By default all dot files (.env, .git, ...) | ||
.* | ||
**/.env.local | ||
**/.env.\*.local | ||
|
||
# Exception to dot files | ||
|
||
!**/.next | ||
!\*\*/.next | ||
|
||
# Yarn | ||
|
||
!.yarnrc.yml | ||
!.yarn/plugins | ||
!.yarn/releases | ||
|
||
# Used when building with nextjs (next-eslint) | ||
|
||
!.eslintrc.base.json | ||
!.prettierignore | ||
!.prettierrc.json | ||
!.eslintignore | ||
|
||
# npm | ||
!.npmrc | ||
|
||
!.npmrc | ||
|
||
# Docker related | ||
|
||
Dockerfile | ||
docker-compose.*.yml | ||
docker-compose.\*.yml | ||
docker-compose.yml | ||
docker | ||
|
||
|
||
# Log files | ||
|
||
logs | ||
*.log | ||
\*.log | ||
|
||
# Temp files | ||
tmp | ||
*.tmp | ||
|
||
tmp | ||
\*.tmp |