[release] v 0.3.2: fix ARM build

This commit is contained in:
Yann Stepienik 2023-05-03 10:41:26 +01:00
parent c9c78aec15
commit 329eb9787e
2 changed files with 11 additions and 2 deletions

View file

@ -4,4 +4,13 @@ if [ $? -ne 0 ]; then
exit 1
fi
cp -r static build/
cp package.json build/
cp -r GeoLite2-Country.mmdb build/
cp -r Logo.png build/
mkdir build/images
cp client/src/assets/images/icons/cosmos_gray.png build/cosmos_gray.png
cp client/src/assets/images/icons/cosmos_gray.png cosmos_gray.png
echo '{' > build/meta.json
cat package.json | grep -E '"version"' >> build/meta.json
echo ' "buildDate": "'`date`'",' >> build/meta.json
echo ' "built from": "'`hostname`'"' >> build/meta.json
echo '}' >> build/meta.json

View file

@ -21,7 +21,7 @@ docker build \
-t azukaar/cosmos-server:$LATEST \
.
sh build arm64.sh
sh build.sh arm64
docker build \
-t azukaar/cosmos-server:$VERSION-arm64 \