[#696] Copy linux bin correctly into docker
This commit is contained in:
parent
922de495e1
commit
1f49e71964
2 changed files with 6 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ jobs:
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: ./
|
root: ./
|
||||||
paths:
|
paths:
|
||||||
- bb
|
- bb-binary
|
||||||
- run:
|
- run:
|
||||||
name: Release
|
name: Release
|
||||||
command: |
|
command: |
|
||||||
|
|
@ -309,6 +309,9 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: ./
|
at: ./
|
||||||
|
- run:
|
||||||
|
name: Move binary to root
|
||||||
|
command: mv bb-binary/bb bb
|
||||||
- run:
|
- run:
|
||||||
name: "Pull Submodules"
|
name: "Pull Submodules"
|
||||||
command: |
|
command: |
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,6 @@ RUN apt-get update \
|
||||||
|
|
||||||
COPY bb /usr/local/bin/bb
|
COPY bb /usr/local/bin/bb
|
||||||
|
|
||||||
|
RUN chmod +x /usr/local/bin/bb
|
||||||
|
|
||||||
CMD ["bb"]
|
CMD ["bb"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue