diff --git a/Dockerfile b/Dockerfile index 6c4266c..fe85a3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,10 @@ # Use the official Node.js image as the base image FROM oven/bun:1.2.10 +RUN apt-get update && apt-get install -y --no-install-recommends \ + ca-certificates \ + && rm -rf /var/lib/apt/lists/* + # Set the working directory inside the container WORKDIR /usr/src/app