Fix can't execute entrypoint

Signed-off-by: Fahmi Akbar Wildana <f.a.wildana@gmail.com>
This commit is contained in:
Fahmi Akbar Wildana 2019-09-09 05:41:58 +07:00
parent 99d5dae83a
commit d900d8b4c7
No known key found for this signature in database
GPG Key ID: 86D1FDF35E9D3807
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -3,4 +3,4 @@ FROM ${base}
ARG artifact
COPY ${artifact} /bin/
ENTRYPOINT ["nu"]
ENTRYPOINT ["/bin/nu"]