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

View File

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