Skip to content

Commit cdf3bf0

Browse files
committed
Normalize formatting
Add a trailing slash to the COPY destination to indicate a directory target and remove redundant whitespace from the ENTRYPOINT array.
1 parent cb34aa1 commit cdf3bf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ RUN apt-get update \
1616
RUN groupadd -g 1001 lava-gitlab-runner \
1717
&& useradd -u 1001 -g lava-gitlab-runner -d /app -M lava-gitlab-runner
1818

19-
COPY --from=build /app/target/release/lava-gitlab-runner /usr/local/bin
19+
COPY --from=build /app/target/release/lava-gitlab-runner /usr/local/bin/
2020

2121
USER lava-gitlab-runner
2222

23-
ENTRYPOINT [ "/usr/local/bin/lava-gitlab-runner" ]
23+
ENTRYPOINT ["/usr/local/bin/lava-gitlab-runner"]

0 commit comments

Comments
 (0)