Based on:
- I assume that
/dev/nvme0n1
is the system's disk, and/dev/sda
is USB drive.
#!/bin/bash | |
# This script is used to fix the alpine version in the Dockerfile. | |
DOCKERFILE=${1:-"Dockerfile"} | |
echo "Building Dockerfile: $DOCKERFILE" | |
BUILD_OUTPUT=$(docker build --progress plain -f "$DOCKERFILE" . 2>&1) | |
BUILD_STATUS=$? |
Based on:
/dev/nvme0n1
is the system's disk, and /dev/sda
is USB drive.