aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorHugo Osvaldo Barrera <hugo@whynothugo.nl>2025-07-23 17:31:45 +0200
committermark9064 <30447455+mark9064@users.noreply.github.com>2025-09-23 16:28:57 +0100
commit5516cc7e0a6fba913d67d226087c1b73e237dc84 (patch)
tree451787a870f4141643e09c74a37d293d61c639d1 /docker
parentea98db0b1dcddf4d68755449fc112d84770e02e0 (diff)
docker: update deprecated syntax
`docker build` warns of deprecated syntax: 1 warning found (use docker --debug to expand): - LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 71) Update Dockerfile, removing the deprecated syntax usage.
Diffstat (limited to 'docker')
-rw-r--r--docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index bd940900..b862f256 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -68,5 +68,5 @@ RUN adduser infinitime
# Configure Git to accept the /sources directory as safe
RUN git config --global --add safe.directory /sources
-ENV SOURCES_DIR /sources
+ENV SOURCES_DIR=/sources
CMD ["/opt/build.sh"]