We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8527b78 commit f4d575fCopy full SHA for f4d575f
1 file changed
Dockerfile
@@ -1,8 +1,12 @@
1
# use the official Bun image
2
# see all versions at https://hub.docker.com/r/oven/bun/tags
3
-FROM oven/bun:1 AS base
+FROM oven/bun:1-debian AS base
4
WORKDIR /usr/src/app
5
6
+# For Coolify healthchecks
7
+RUN apt-get update && apt-get install -y curl \
8
+ && rm -rf /var/lib/apt/lists/*
9
+
10
COPY . .
11
RUN bun install --frozen-lockfile
12
0 commit comments