diff --git a/Dockerfile b/Dockerfile index 209d4a9..049d6ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,6 @@ COPY . . COPY init.sh . RUN chmod +x init.sh -# Build the app (using TypeScript compiler) - # Expose necessary ports EXPOSE 3000 diff --git a/init.sh b/init.sh index bdf5368..d036f5e 100644 --- a/init.sh +++ b/init.sh @@ -1,5 +1,5 @@ #!/bin/bash pnpm dlx prisma migrate deploy pnpm dlx prisma generate -pnpm dlx build -pnpm dlx run start \ No newline at end of file +pnpm run build +pnpm run start \ No newline at end of file