-
-
Notifications
You must be signed in to change notification settings - Fork 173
Open
Labels
Description
Issue description
Encouter the issue in the title when running docker run -it --name pypots wenjiedu/pypots on Mac with Apple Silicon.
Although we indicate linux/arm64/v8 in arg platforms as shown below, it seems the built images do not include the entry in the manifest.
PyPOTS/.github/workflows/publish_to_DockerHub.yml
Lines 44 to 53 in 1455df3
| - name: Build and Push Image for Linux-ARM64 | |
| uses: docker/build-push-action@v6 | |
| with: | |
| file: ./docker/Dockerfile_linux | |
| platforms: linux/arm64, linux/arm64/v8 | |
| build-args: | | |
| TARGETPLATFORM=linux/arm64 | |
| push: true | |
| tags: | | |
| ${{ secrets.DOCKERHUB_USERNAME }}/pypots:ubuntu-arm64 |
Your contribution
Will investigate it