diff --git a/Dockerfile b/Dockerfile index 62a9369..557706d 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18-alpine +FROM node:24-alpine RUN apk add --no-cache libc6-compat diff --git a/package.json b/package.json index 4212264..d6e2f7b 100755 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "type": "module", "scripts": { "dev": "vite dev", - "start": "HOST=0.0.0.0 PORT=80 node ./build/index.js", + "start": "HOST=0.0.0.0 PORT=3000 node ./build/index.js", "build": "pnpm run check && vite build", "preview": "vite preview", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",