Skip to content

Commit

Permalink
Use older bun version due to oven-sh/bun#15383
Browse files Browse the repository at this point in the history
  • Loading branch information
holzmaster committed Dec 13, 2024
1 parent 22836e4 commit f6b9a0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# syntax=docker/dockerfile:1
# check=error=true

FROM oven/bun:alpine AS runtime-dependencies
FROM oven/bun:1.1.0-alpine AS runtime-dependencies
WORKDIR /app
RUN --mount=type=bind,source=package.json,target=package.json \
--mount=type=bind,source=bun.lockb,target=bun.lockb \
--mount=type=cache,target=/root/.bun/install/cache \
NODE_ENV=production bun install

FROM oven/bun:alpine
FROM oven/bun:1.1.0-alpine
WORKDIR /app
# ffmpeg needed for get-audio-duration
RUN apk add --no-cache \
Expand Down

0 comments on commit f6b9a0e

Please sign in to comment.