[#696] Copy linux bin correctly into docker

This commit is contained in:
Rahul De 2021-01-02 17:13:38 +01:00
parent 922de495e1
commit 1f49e71964
No known key found for this signature in database
GPG key ID: 4435E700B66BA90F
2 changed files with 6 additions and 1 deletions

View file

@ -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: |

View file

@ -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"]