Wykonany proces użytkownika EXEC: Błąd formatu wykonania EXEC
#!/bin/bash
# ^
# |
#Add this to the top of the script file
Moshe
#!/bin/bash
# ^
# |
#Add this to the top of the script file
# Build for ARM64 (default)
docker build -t <image-name>:<version>-arm64 .
# Build for ARM64
docker build --platform=linux/arm64 -t <image-name>:<version>-arm64 .
# Build for AMD64
docker build --platform=linux/amd64 -t <image-name>:<version>-amd64 .