changed default port

This commit is contained in:
bootunloader
2024-09-11 09:00:35 +03:00
parent fa8fb44e47
commit 9eb6f540ac
2 changed files with 2 additions and 2 deletions

View File

@@ -14,6 +14,6 @@ COPY . .
RUN pnpm run build RUN pnpm run build
EXPOSE 80 EXPOSE 3000
CMD ["pnpm", "run", "start"] CMD ["pnpm", "run", "start"]

View File

@@ -6,7 +6,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "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", "build": "pnpm run check && vite build",
"preview": "vite preview", "preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",