Skip to content

Commit f4d575f

Browse files
committed
fix: update dockerfile to fix coolify healthcheck issues
1 parent 8527b78 commit f4d575f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# use the official Bun image
22
# see all versions at https://hub.docker.com/r/oven/bun/tags
3-
FROM oven/bun:1 AS base
3+
FROM oven/bun:1-debian AS base
44
WORKDIR /usr/src/app
55

6+
# For Coolify healthchecks
7+
RUN apt-get update && apt-get install -y curl \
8+
&& rm -rf /var/lib/apt/lists/*
9+
610
COPY . .
711
RUN bun install --frozen-lockfile
812

0 commit comments

Comments
 (0)