testing ..

This commit is contained in:
vabene1111
2025-08-21 17:12:51 +02:00
parent 6c498f7dac
commit f8e4b39d88
2 changed files with 2 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
FROM python:3.13-alpine3.22 FROM python:3.13-alpine3.22
#Install all dependencies. #Install all dependencies.
RUN apk add --no-cache postgresql-libs postgresql-client gettext zlib libjpeg libwebp libxml2-dev libxslt-dev openldap git libgcc libstdc++ nginx tini envsubst node RUN apk add --no-cache postgresql-libs postgresql-client gettext zlib libjpeg libwebp libxml2-dev libxslt-dev openldap git libgcc libstdc++ nginx tini envsubst nodejs npm
#Print all logs without buffering it. #Print all logs without buffering it.
ENV PYTHONUNBUFFERED=1 \ ENV PYTHONUNBUFFERED=1 \

View File

@@ -89,6 +89,7 @@ python manage.py migrate
if [ "${PLUGINS_BUILD}" -eq 1 ]; then if [ "${PLUGINS_BUILD}" -eq 1 ]; then
echo "Running yarn build at startup because PLUGINS_BUILD is enabled" echo "Running yarn build at startup because PLUGINS_BUILD is enabled"
cd vue3 cd vue3
npm install --global yarn
yarn build yarn build
cd .. cd ..
fi fi