We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47346c7 commit d1fca70Copy full SHA for d1fca70
Dockerfile
@@ -8,14 +8,14 @@ RUN bun install
8
9
COPY src/ ./src/
10
11
-RUN bun build src/index.ts --outdir dist --target bun --production
+RUN bun build src/index.ts --outfile rabbitforexapi --target bun --compile --production
12
13
# ---------- Runtime stage ----------
14
-FROM oven/bun:1-distroless
+FROM gcr.io/distroless/base-nossl-debian13
15
16
WORKDIR /app
17
18
-COPY --from=builder /app/dist/ /app/
+COPY --from=builder /app/rabbitforexapi /app/
19
20
EXPOSE 3000/tcp
21
-CMD ["index.js"]
+ENTRYPOINT ["/app/rabbitforexapi"]
0 commit comments