This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 494e5a7342d6 Fix warnings in Dockerfile used for Sama test infra
494e5a7342d6 is described below
commit 494e5a7342d6f28b227a0fc25c9d1dd2159decba
Author: Aurélien Pupier <[email protected]>
AuthorDate: Mon Aug 31 09:49:26 2026 +0200
Fix warnings in Dockerfile used for Sama test infra
* FromAsCasing: 'as' and 'FROM' keywords' casing do not match
* LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy
"ENV key value" format
Signed-off-by: Aurélien Pupier <[email protected]>
---
.../resources/org/apache/camel/test/infra/smb/services/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/test-infra/camel-test-infra-smb/src/main/resources/org/apache/camel/test/infra/smb/services/Dockerfile
b/test-infra/camel-test-infra-smb/src/main/resources/org/apache/camel/test/infra/smb/services/Dockerfile
index 95131e06f03c..a6dccf66cdb0 100644
---
a/test-infra/camel-test-infra-smb/src/main/resources/org/apache/camel/test/infra/smb/services/Dockerfile
+++
b/test-infra/camel-test-infra-smb/src/main/resources/org/apache/camel/test/infra/smb/services/Dockerfile
@@ -16,9 +16,9 @@
#
ARG FROMIMAGE=mirror.gcr.io/fedora:43
-FROM $FROMIMAGE as samba
+FROM $FROMIMAGE AS samba
LABEL maintainer="[email protected]"
-ENV SAMBA_ROOT /opt/camel/samba
+ENV SAMBA_ROOT=/opt/camel/samba
EXPOSE 139 445
RUN dnf install -y samba && mkdir -p /data/rw /data/ro /data/no-delete
/data/unix-security /data/fixed-delete /data/unix-owned
ADD smb.conf /etc/samba/smb.conf