|
# Docker only reads the .dockerignore INSIDE the build context (this folder). Without it,
|
|
# `COPY . .` would overwrite the image's freshly installed node_modules with the host's
|
|
# (built for a different OS) and drag in stale dist output.
|
|
node_modules
|
|
dist
|
|
.env
|
|
.env.*
|