Skip to content

Commit 44b91e2

Browse files
author
Martin Reynolds
committed
fix: copy jfrog cli to /usr/bin/
this is so it is in the path for execution
1 parent a2e1a98 commit 44b91e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ LABEL "com.github.actions.color"="green"
1111

1212
RUN apk add curl
1313

14-
RUN curl -fL https://getcli.jfrog.io | sh
14+
RUN curl -fL https://getcli.jfrog.io | sh \
15+
&& sudo mv ./jfrog /usr/bin/
16+
&& chmod +x /usr/bin/jfrog
1517

1618
COPY "entrypoint.sh" "/entrypoint.sh"
1719
RUN chmod +x /entrypoint.sh

0 commit comments

Comments
 (0)