Ready for release 1.1.4

This commit is contained in:
charlesgauthereau
2025-12-07 11:48:14 +01:00
parent 9c0c462192
commit caf00b7877
4 changed files with 20 additions and 18 deletions
+5 -5
View File
@@ -3,11 +3,11 @@ name: portabase-prod
services: services:
app: app:
# build: build:
# context: . context: .
# dockerfile: docker/dockerfile/Dockerfile dockerfile: docker/dockerfile/Dockerfile
# target: prod target: prod
image: solucetechnologies/portabase:1.1.3-rc.3 # image: solucetechnologies/portabase:1.1.4-rc.1
ports: ports:
- '8887:80' - '8887:80'
environment: environment:
+1
View File
@@ -110,3 +110,4 @@ USER nextjs
ENTRYPOINT ["sh","/app/app-prod-entrypoint.sh"] ENTRYPOINT ["sh","/app/app-prod-entrypoint.sh"]
+7 -8
View File
@@ -1,15 +1,14 @@
#!/bin/bash #!/bin/bash
if [ -n "$TZ" ]; then if [ -n "$TZ" ]; then
if [ -f "/usr/share/zoneinfo/$TZ" ]; then echo "[INFO] Application timezone set to $TZ (environment only)"
ln -sf /usr/share/zoneinfo/$TZ /etc/localtime export TZ="$TZ"
echo "$TZ" > /etc/timezone else
echo "[INFO] Timezone set to $TZ" echo "[WARN] No TZ provided, using default container timezone"
else
echo "[WARN] Timezone '$TZ' not found. Using default."
fi
fi fi
node server.js node server.js
exec "$@" exec "$@"
@@ -150,11 +150,13 @@ export const LoginForm = (props: loginFormProps) => {
</Button> </Button>
</Form> </Form>
<div className="relative my-4 flex items-center justify-center overflow-hidden"> {availableProviders.length > 0 && (
<Separator/> <div className="relative my-4 flex items-center justify-center overflow-hidden">
<div className="px-2 text-center bg-card text-sm">OR</div> <Separator/>
<Separator/> <div className="px-2 text-center bg-card text-sm">OR</div>
</div> <Separator/>
</div>
)}
<SocialAuthButton <SocialAuthButton
callBackURL={urlParams.get("redirect") ?? "/dashboard/profile"} callBackURL={urlParams.get("redirect") ?? "/dashboard/profile"}