chore(build): 🐛 Fix Dockerfile, update bun-node version

This commit is contained in:
Jesse Wierzbinski 2024-05-06 17:57:35 +00:00
parent 8822aae0d3
commit c22158c687
No known key found for this signature in database
3 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
# Bun doesn't run well on Musl but this seems to work
FROM imbios/bun-node:1.1.5-current-alpine as base
FROM imbios/bun-node:1.1.7-20-alpine as base
RUN apk add --no-cache libstdc++
@ -10,7 +10,7 @@ FROM base AS install
RUN mkdir -p /temp
COPY . /temp
WORKDIR /temp
RUN bun install --frozen-lockfile
RUN bun install --frozen-lockfile --production
FROM base as build