diff --git a/Dockerfile b/Dockerfile index a732770..4f0c522 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ -# Use a base image with Node.js 22.1.0 -FROM node:22.1.0 +FROM node:22.1.0-bullseye # Set metadata for contact LABEL maintainer="Rishi Ghan " @@ -51,7 +50,7 @@ RUN npm install # Clear npm cache and install sharp with build-from-source RUN npm cache clean --force -RUN npm install --platform=linux --arch=arm64 sharp --build-from-source +RUN npm install --force --arch=arm64 --platform=linux sharp --build-from-source # Install global dependencies RUN npm install -g typescript ts-node