mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-01-11 21:49:52 -06:00
9 lines
220 B
Bash
Executable File
9 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
npm ci
|
|
./minify
|
|
npm run test
|
|
mvn clean install
|
|
docker buildx build --platform linux/s390x,linux/amd64,linux/ppc64le,linux/arm64/v8,linux/arm/v7 \
|
|
-t housewrecker/gaps:alpha \
|
|
-f Dockerfile --push . |