We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e18a5e1 commit 96ac19fCopy full SHA for 96ac19f
2 files changed
Dockerfile
@@ -27,6 +27,9 @@ COPY package.json ./
27
# Install dependencies
28
RUN bun install
29
30
+# Trust all packages
31
+RUN bun pm trust --all
32
+
33
# Copy the rest of the application code
34
COPY . .
35
Dockerfile.node
@@ -23,6 +23,9 @@ COPY package.json ./
23
24
RUN npm install
25
26
+RUN npm audit fix --force
0 commit comments