Skip to content

Commit

Permalink
refactor: iupdate
Browse files Browse the repository at this point in the history
  • Loading branch information
Siumauricio committed Oct 28, 2024
1 parent c862207 commit fd1f028
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions Dockerfile.website
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ COPY . .
# Install dependencies
COPY package.json pnpm-lock.yaml ./
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile

# Deploy only the dokploy app

ENV NODE_ENV=production
RUN pnpm run build


FROM base AS dokploy
WORKDIR /app

# Set production
ENV NODE_ENV=production

Expand All @@ -32,4 +29,4 @@ COPY --from=build /app/node_modules ./node_modules


EXPOSE 3000
CMD HOSTNAME=0.0.0.0 && pnpm start
CMD ["pnpm", "start"]
1 change: 1 addition & 0 deletions app/[locale]/pricing/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use client";
import { Pricing } from "../../../components/pricing";

export default function Home() {
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"check": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true",
"typecheck": "tsc --noEmit"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
Expand All @@ -32,10 +31,10 @@
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6",
"@radix-ui/react-tabs": "1.1.1"
},
"devDependencies": {
"typescript": "5.1.6",
"@biomejs/biome": "1.8.3",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0"
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fd1f028

Please sign in to comment.