Skip to content

Commit

Permalink
Merge pull request #18 from Zondax/fix
Browse files Browse the repository at this point in the history
add docker action login
  • Loading branch information
ftheirs authored Nov 14, 2023
2 parents 5273e4e + b120357 commit 7116e27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
run: |
echo "speculosHash=$(git ls-remote https://github.com/LedgerHQ/speculos | head -n 1 | awk '{print $1}')" >> $GITHUB_OUTPUT
echo "hash=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU # to build multitarget containers
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ENV LANG C.UTF-8
RUN apt-get update && \
apt-get install -qy cmake curl gcc-arm-linux-gnueabihf \
git libc6-dev-armhf-cross libvncserver-dev python3-pip \
qemu-user-static tesseract-ocr libtesseract-dev wget \
qemu-user-static wget \
gdb-multiarch binutils-arm-none-eabi && \
apt-get clean && rm -rf /var/lib/apt/lists/

Expand Down

0 comments on commit 7116e27

Please sign in to comment.