Merge pull request #21852 from pouwerkerk/patch-1

Fix ENV name typo
This commit is contained in:
David Karlsson 2025-01-21 14:18:21 +01:00 committed by GitHub
commit 1070efb1b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ COPY . .
CMD ["node", "app.js"]
```
With this Dockerfile, you can use `--build-arg` to override the default value of `ENV`:
With this Dockerfile, you can use `--build-arg` to override the default value of `NODE_ENV`:
```console
$ docker build --build-arg NODE_ENV=development .