Browse Source

fix: 🐋 install with frozen lockfile

ThatOneCalculator 1 year ago
parent
commit
ebcd985489
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -7,7 +7,7 @@ WORKDIR /app
 COPY package.json package-lock.json ./ 
 
 COPY . .
-RUN bun install
+RUN bun install --frozen-lockfile
 RUN bun run build
 
 FROM python:3.11-slim-buster as base