This repository has been archived on 2024-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
woj-ui/build_image.sh

10 lines
204 B
Bash
Raw Permalink Normal View History

2024-03-13 20:15:46 +08:00
#!/usr/bin/env bash
DOCKER="${DOCKER:-podman}"
VERSION=$(jq -r .version < package.json)
set -x
$DOCKER build -t "git.0x7f.app/woj/woj-ui:${VERSION}" .
$DOCKER push "git.0x7f.app/woj/woj-ui:${VERSION}"