mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-09 07:34:30 +08:00
* Migrate authentication to beans. * Fix test execution * Update to java 17 * Fix failing tests. * Fix java 17 migration warnings * Move error page to react. * Remove Tiles !!!! * Fix hibernate warning * Update to jslt 3.0.1 * Bump version.
11 lines
432 B
Bash
Executable File
11 lines
432 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -o
|
|
set -u
|
|
|
|
mvn -f ../pom.xml clean package
|
|
docker build --platform linux/amd64 -t wisemapping/wisemapping:latest -f ./Dockerfile ../wise-webapp/target/
|
|
#docker buildx create --use --platform=linux/arm64,linux/amd64 --name multi-platform-builder
|
|
#docker buildx inspect --bootstrap
|
|
#docker buildx build --platform=linux/amd64,linux/arm64 --push -t wisemapping/wisemapping:latest -f ./Dockerfile ../wise-webapp/target/
|