diff --git a/Dockerfile b/Dockerfile index 5eb4430..0798ba3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM oven/bun:1 +FROM imbios/bun-node:20-alpine WORKDIR /app @@ -8,8 +8,9 @@ RUN bun install --frozen-lockfile --production COPY . . +ENV NODE_ENV=production RUN bun run build EXPOSE 3000 -ENTRYPOINT [ "bun", "start" ] \ No newline at end of file +ENTRYPOINT [ "bun", "run", "start" ] \ No newline at end of file diff --git a/bun.lockb b/bun.lockb index 93e4375..f570703 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 6033923..9b21da1 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "@radix-ui/react-separator": "^1.0.3", "@radix-ui/react-slot": "^1.0.2", "@t3-oss/env-nextjs": "^0.7.1", + "autoprefixer": "^10.4.17", "clsx": "^2.1.0", "country-flag-icons": "^1.5.9", "cva": "^1.0.0-beta.1", @@ -39,7 +40,6 @@ "@types/react-dom": "^18.2.15", "@typescript-eslint/eslint-plugin": "^6.11.0", "@typescript-eslint/parser": "^6.11.0", - "autoprefixer": "^10.4.14", "eslint": "^8.54.0", "eslint-config-next": "^14.0.4", "postcss": "^8.4.31", diff --git a/src/components/assets/Logo.tsx b/src/components/assets/Logo.tsx index 3a0bd54..e0074cf 100644 --- a/src/components/assets/Logo.tsx +++ b/src/components/assets/Logo.tsx @@ -2,24 +2,24 @@ function Logo({ className, ...rest }: { className?: string }) { return ( );