fix: 💚 Remove --frozen-lockfile during CI, as the build and dev Bun version differ and cause issues

This commit is contained in:
Jesse Wierzbinski 2024-05-28 14:43:15 -10:00
parent fbe0e35587
commit f5a0f52b93
No known key found for this signature in database

View file

@ -11,7 +11,7 @@ FROM base AS install
RUN mkdir -p /temp RUN mkdir -p /temp
COPY . /temp COPY . /temp
WORKDIR /temp WORKDIR /temp
RUN bun install --frozen-lockfile --production RUN bun install --production
FROM base as build FROM base as build