We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c301b0 commit e104559Copy full SHA for e104559
2 files changed
.dockerignore
@@ -0,0 +1,13 @@
1
+node_modules
2
+.git
3
+.env*
4
+!.env.production
5
+!.env.local.template
6
+dist
7
+build
8
+.output
9
+target
10
+*.log
11
+.turbo
12
+coverage
13
+.nyc_output
Dockerfile
@@ -6,7 +6,7 @@ WORKDIR /app
# Build
FROM base AS builder
COPY package.json bun.lock* ./
-RUN bun install
+RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
0 commit comments