docker file fix, version bump

This commit is contained in:
Milos Stojanovic
2022-10-17 09:22:55 +02:00
parent 49a49f564d
commit d74d4bd062
3 changed files with 6 additions and 2 deletions

View File

@@ -2,6 +2,9 @@
## Upcoming...
## 7.8.7 - 2022-10-17
* Dockerfile fix
## 7.8.6 - 2022-10-17
* Estonian translation added, thanks @ihvz
* CI pipeline fix

View File

@@ -24,7 +24,8 @@ RUN npm run build
RUN vendor/bin/phpunit
RUN npm run lint
#RUN npm run e2e
RUN rm -rf node_modules frontend tests docs .git*
RUN rm -rf node_modules frontend tests docs .git .github
RUN rm README.md couscous.yml repository/.gitignore babel.config.js cypress* .env* .eslint* .gitignore jest.* .php_cs* phpunit* postcss* vue*
#################################
# stage production

2
dist/index.php vendored
View File

@@ -41,7 +41,7 @@ if (! defined('APP_PUBLIC_PATH')) {
}
define('APP_PUBLIC_DIR', __DIR__);
define('APP_VERSION', '7.8.6');
define('APP_VERSION', '7.8.7');
use Filegator\App;
use Filegator\Config\Config;