fix(rebuild binary [TEST]): rebuild binary (test update binary from tar.xz)

- add rm bin in gitpod Dockerfile
This commit is contained in:
Medzik 2021-09-01 12:55:01 +00:00
parent 021fc6ea62
commit 4b939c6d58
1 changed files with 2 additions and 1 deletions

3
.gitpod.Dockerfile vendored
View File

@ -3,7 +3,8 @@ FROM gitpod/workspace-full
# GoReleaser
RUN curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh
RUN sudo mv bin/* /usr/bin/
RUN sudo mv bin/* /usr/bin/ && \
rm -rf bin/
RUN yarn global add nodemon
RUN echo "export PATH=\$PATH:`yarn global bin`" >> ~/.bashrc