Added build scripts. Pushed version 2.2.2
This commit is contained in:
parent
58d021dde6
commit
c2e81832a9
6 changed files with 13 additions and 5 deletions
2
.dev/build_latest.sh
Normal file
2
.dev/build_latest.sh
Normal file
|
@ -0,0 +1,2 @@
|
|||
docker build -t pawelmalak/flame -t "pawelmalak/flame:$1" -f .docker/Dockerfile "$2" \
|
||||
&& docker push pawelmalak/flame && docker push "pawelmalak/flame:$1"
|
6
.dev/build_multiarch.sh
Normal file
6
.dev/build_multiarch.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
docker buildx build \
|
||||
--platform linux/arm/v7,linux/arm64,linux/amd64 \
|
||||
-f .docker/Dockerfile.multiarch \
|
||||
-t pawelmalak/flame:multiarch \
|
||||
-t "pawelmalak/flame:multiarch$1" \
|
||||
--push "$2"
|
2
.env
2
.env
|
@ -1,5 +1,5 @@
|
|||
PORT=5005
|
||||
NODE_ENV=development
|
||||
VERSION=2.2.1
|
||||
VERSION=2.2.2
|
||||
PASSWORD=flame_password
|
||||
SECRET=e02eb43d69953658c6d07311d6313f2d4467672cb881f96b29368ba1f3f4da4b
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,4 +2,3 @@ node_modules
|
|||
data
|
||||
public
|
||||
!client/public
|
||||
build.sh
|
|
@ -1,7 +1,8 @@
|
|||
### v2.2.2 (2022-02-TBA)
|
||||
### v2.2.2 (2022-03-21)
|
||||
- Added option to get user location directly from the app ([#287](https://github.com/pawelmalak/flame/issues/287))
|
||||
- Fixed bug with local search not working when using prefix ([#289](https://github.com/pawelmalak/flame/issues/289))
|
||||
- Fixed bug with app description not updating when using custom icon ([#310](https://github.com/pawelmalak/flame/issues/310))
|
||||
- Changed permissions to some files and directories created by Flame
|
||||
- Changed some of the settings tabs
|
||||
|
||||
### v2.2.1 (2022-01-08)
|
||||
|
|
|
@ -1 +1 @@
|
|||
REACT_APP_VERSION=2.2.1
|
||||
REACT_APP_VERSION=2.2.2
|
Loading…
Reference in a new issue