We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97df71f commit 6ae741cCopy full SHA for 6ae741c
.dockerignore
@@ -1 +1,2 @@
1
node_modules
2
+.env*
Dockerfile
@@ -10,8 +10,8 @@ FROM base AS build
10
11
WORKDIR /build
12
ARG SQL_GENERATE_URL
13
-ENV DATABASE_URL=$SQL_GENERATE_URL
14
-RUN test -n "${DATABASE_URL}"
+ENV DIRECT_URL=$SQL_GENERATE_URL
+RUN test -n "${DIRECT_URL}"
15
COPY . .
16
RUN --mount=type=cache,target=~/.bun/install bun install --frozen-lockfile --ignore-scripts
17
RUN cd server; bun prisma generate --sql
0 commit comments