Skip to content

Commit

Permalink
build & deploy to AWS
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravindra Mohith P authored and Ravindra Mohith P committed Aug 7, 2024
1 parent 5f150e9 commit 8a7c08c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ FROM node:22-alpine3.19 as builder
WORKDIR /app
COPY package*.json ./
COPY prisma ./
COPY . .
RUN npm i -D prisma@5.1.1
RUN npx prisma generate
RUN npm install --legacy-peer-deps
COPY . .
RUN npm run build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ChatHeader } from "@/components/chat/chat-header";
import { db } from "@/lib/db";
import ChatInput from "@/components/chat/chat-input";
import ChatMessages from "@/components/chat/chat-messages";
import type { ChannelType } from "@prisma/client";
import { ChannelType } from "@prisma/client";
import { MediaRoom } from "@/components/media-room";

interface ChannelIdPageProps {
Expand Down

0 comments on commit 8a7c08c

Please # to comment.