]> source.dussan.org Git - gitea.git/commit
Fix deprecated Dockerfile ENV format (#31450) (#31452)
authorGiteabot <teabot@gitea.io>
Mon, 24 Jun 2024 00:53:37 +0000 (08:53 +0800)
committerGitHub <noreply@github.com>
Mon, 24 Jun 2024 00:53:37 +0000 (00:53 +0000)
commitd1dd3fa49cae9f296c17ceedd8ce69a29af81bdf
tree0372531bb36ca930e5ab8789b8ce90a662659647
parenteaeb4d1b9659265bb2a17dc4291543bf47ff8419
Fix deprecated Dockerfile ENV format (#31450) (#31452)

Backport #31450 by @silverwind

See
https://docs.docker.com/reference/build-checks/legacy-key-value-format/.
Fixes these warnings seen during the docker build:

```
 4 warnings found (use --debug to expand):
 - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 5)
 - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 9)
 - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 75)
 - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 76)
 ```

Introduced in: https://github.com/moby/buildkit/pull/4923

Co-authored-by: silverwind <me@silverwind.io>
Dockerfile
Dockerfile.rootless