fix: 🐋 install with frozen lockfile

This commit is contained in:
ThatOneCalculator 2024-01-04 17:04:19 -08:00
parent df77e8d1c1
commit ebcd985489
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 1 additions and 1 deletions

View File

@ -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