diff --git a/backend/Dockerfile b/backend/Dockerfile index 6040318..3425044 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -4,7 +4,7 @@ FROM base AS builder WORKDIR /app/ COPY package.json bun.lockb ./ -RUN bun i --production --frozen-lockfile +RUN bun i --frozen-lockfile COPY . . RUN bun run build diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 1588224..445bd88 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -4,7 +4,7 @@ FROM base AS dependencies WORKDIR /app/ COPY ./frontend/package.json ./frontend/bun.lockb ./ -RUN bun i --production --frozen-lockfile +RUN bun i --frozen-lockfile FROM base AS build diff --git a/frontend/package.json b/frontend/package.json index 1c3a216..0a26834 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -22,7 +22,6 @@ "react-router-dom": "^6.4.3", "socket.io-client": "^4.7.5", "tailwindcss": "^3.2.1", - "typescript": "^5.0.4", "vite": "^5.0.0" }, "devDependencies": { @@ -33,6 +32,7 @@ "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.26.0", "eslint-plugin-react": "^7.31.10", - "eslint-plugin-react-hooks": "^4.6.0" + "eslint-plugin-react-hooks": "^4.6.0", + "typescript": "^5.0.4" } }