From 606943b6be8b91d4427c2d0992fd41a92f1c3afe Mon Sep 17 00:00:00 2001 From: Fangjun Kuang Date: Thu, 27 Jul 2023 18:05:43 +0800 Subject: [PATCH] small fixes --- .github/workflows/build-docker-image.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index c019050d5..cfd51af6a 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -22,6 +22,12 @@ jobs: - name: Check out the repo uses: actions/checkout@v3 + - name: Rename + shell: bash + run: | + mv -v ./docker/torch1.13.0-cuda11.6-cudnn8.Dockerfile ./Dockerfile + ls -lh + - name: Log in to Docker Hub uses: docker/login-action@v2 with: @@ -31,7 +37,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v4 with: - context: ./docker - file: ./torch1.13.0-cuda11.6-cudnn8.Dockerfile + context: . + file: ./Dockerfile push: true tags: k2fsa/icefall:torch1.13.0-cuda11.6