double oops. idiot inc. here...

This commit is contained in:
Chris Kruining 2025-02-04 16:15:55 +11:00
parent da9e39d338
commit 99c2df1bfa
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -3,11 +3,11 @@ WORKDIR /usr/src/app
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev
COPY package.json bun.lock /temp/dev
RUN cd /temp/dev && bun install --frozen-lockfile
RUN mkdir -p /temp/prod
COPY package.json bun.lockb /temp/prod/
COPY package.json bun.lock /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile --production
FROM base AS prerelease