mirror of
https://github.com/Gimanh/taskview-community.git
synced 2026-09-11 13:29:17 +00:00
9 lines
246 B
Bash
9 lines
246 B
Bash
#!/bin/bash
|
|
|
|
# This script builds the docker image for the taskview-ce-webapp
|
|
|
|
VERSION=$1
|
|
|
|
pnpm build
|
|
|
|
docker buildx build --platform=linux/amd64,linux/arm64 -t gimanhead/taskview-ce-webapp:$VERSION -t gimanhead/taskview-ce-webapp:latest . --load |