Skip to content

Commit 4cf7ae1

Browse files
committed
ci: fix Dockerfile legacy ENV format warning
Update ENV instructions in ci/Dockerfile.builder to use modern key=value format instead of legacy whitespace separator format. This resolves the GitHub CI LegacyKeyValueFormat warning.
1 parent c54e1f8 commit 4cf7ae1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ci/Dockerfile.builder

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ ARG USER_ID=1000
2424
ARG GROUP_ID=1000
2525

2626
# add user with specified (or default) user/group ids
27-
ENV USER_ID ${USER_ID}
28-
ENV GROUP_ID ${GROUP_ID}
27+
ENV USER_ID=${USER_ID}
28+
ENV GROUP_ID=${GROUP_ID}
2929
RUN groupadd -g ${GROUP_ID} gobyte
3030
RUN useradd -u ${USER_ID} -g gobyte -s /bin/bash -m -d /gobyte gobyte
3131

0 commit comments

Comments
 (0)