mirror of
https://github.com/nushell/nushell
synced 2025-01-13 05:38:57 +00:00
Fix can't execute entrypoint
Signed-off-by: Fahmi Akbar Wildana <f.a.wildana@gmail.com>
This commit is contained in:
parent
99d5dae83a
commit
d900d8b4c7
2 changed files with 2 additions and 1 deletions
1
.github/workflows/docker-publish.yml
vendored
1
.github/workflows/docker-publish.yml
vendored
|
@ -52,6 +52,7 @@ jobs:
|
|||
run: |
|
||||
REGISTRY=${REGISTRY,,}; export TAG=${GITHUB_REF##*/}-${{ matrix.tag }};
|
||||
export NU_BINS=target/release/$( [ ${{ matrix.plugin }} = true ] && echo nu* || echo nu )
|
||||
chmod +x $NU_BINS
|
||||
|
||||
echo ${{ secrets.DOCKER_REGISTRY }} | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
||||
docker-compose --file docker/docker-compose.package.yml build
|
||||
|
|
|
@ -3,4 +3,4 @@ FROM ${base}
|
|||
|
||||
ARG artifact
|
||||
COPY ${artifact} /bin/
|
||||
ENTRYPOINT ["nu"]
|
||||
ENTRYPOINT ["/bin/nu"]
|
Loading…
Reference in a new issue