File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ EXPOSE 3005
114
114
COPY package*.json yarn*.lock ./
115
115
116
116
# Replace the schema path in the package.json file
117
- RUN sed -i 's_"schema": "./src/prisma/schema.prisma"_"schema": "./dist/src/ prisma/schema.prisma"_g' package.json
117
+ RUN sed -i 's_"schema": "./src/prisma/schema.prisma"_"schema": "./dist/prisma/schema.prisma"_g' package.json
118
118
119
119
# Copy only production dependencies from the prod-dependencies stage
120
120
COPY --from=prod-dependencies /app/node_modules ./node_modules
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ const main = async () => {
14
14
15
15
const schema =
16
16
process . env . NODE_ENV === "production"
17
- ? `./dist/src/ prisma/schema.prisma`
17
+ ? `./dist/prisma/schema.prisma`
18
18
: `./src/prisma/schema.prisma` ;
19
19
20
20
if ( hasWalletsTable ) {
You can’t perform that action at this time.
0 commit comments