diff --git a/Dockerfile b/Dockerfile index 62a9369..48dc00e 100755 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,6 @@ COPY . . RUN pnpm run build -EXPOSE 80 +EXPOSE 3000 CMD ["pnpm", "run", "start"] diff --git a/package.json b/package.json index e92d4d1..546fc47 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",