fix: 🐋 docker build

This commit is contained in:
ThatOneCalculator 2024-01-04 20:13:50 -08:00
parent ea7ea52ba3
commit eb7138ab9f
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 2 additions and 2 deletions

View file

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