We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 457832d commit 4d8c3e5Copy full SHA for 4d8c3e5
prepare-package.bash
@@ -36,11 +36,11 @@ gpg --output "${APP_NAME}/${PUBLIC_KEY}" --armor --export ${KEY_ID} &>> ${LOG}
36
(
37
cd "${APP_NAME}"
38
echo "Creating container image archive '${APP_NAME}-web'"
39
- docker build --tag ${APP_NAME}-web:latest . &>> ${LOG}
+ docker build --platform linux/amd64 --tag ${APP_NAME}-web:latest . &>> ${LOG}
40
docker save ${APP_NAME}-web:latest > ${APP_NAME}-web.tar
41
42
echo "Creating container image archive '${APP_NAME}-redis.tar'"
43
- docker pull redis:alpine &>> ${LOG}
+ docker pull --platform linux/amd64 redis:alpine &>> ${LOG}
44
docker save redis:alpine > ${APP_NAME}-redis.tar
45
46
echo "Creating '${APP_NAME}.app'"
0 commit comments