mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
3c6e6b9af7
* chore: revert "Fix sidebar test" This reverts commit 096d6349170657e17eb2af802a2187bc40f81cb4. Sorry, this push should have gone to my fork only. * chore: revert "Merge branch 'apm' into pr/mbtools/2" This reverts commit 87fa9270a5fe35fb504a8632de4bfc7a09ab3699, reversing changes made to dc2cd48a783bbbe4ecdecd9b4d41a8f35da95dd1. Sorry, this push should have gone to my fork only.
40 lines
851 B
Plaintext
40 lines
851 B
Plaintext
# we try to avoid adding files to the docker images that change often
|
|
# or that are not needed for running the docker image
|
|
# this greatly reduces the amount of times we need to rerun `npm install` when building image locally
|
|
# https://codefresh.io/blog/not-ignore-dockerignore/
|
|
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
|
|
# consider them hidden
|
|
.*
|
|
# you can add exceptions like in .gitignore to maintain a whitelist:
|
|
# e.g.
|
|
!.babelrc
|
|
!.eslintrc
|
|
!.prettierrc.json
|
|
!.prettierignore
|
|
!.eslintignore
|
|
!.stylelintrc
|
|
|
|
# do not copy over node_modules we will run `pnpm install` anyway
|
|
node_modules
|
|
website
|
|
jest
|
|
docs
|
|
contrib
|
|
docker-examples
|
|
website
|
|
systemd
|
|
|
|
# output from test runs and similar things
|
|
*.log
|
|
coverage/
|
|
.vscode/
|
|
|
|
# IDE config files
|
|
jsconfig.json
|
|
*.iml
|
|
|
|
# let's not get too recursive ;)
|
|
Dockerfile*
|
|
docker-compose*.yaml
|