diff --git a/Dockerfile b/Dockerfile index a5fe8aaf0..399c9e8a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM node:20.7.0-alpine AS base +FROM node:20-bullseye-slim AS base -RUN apk update && apk add git +RUN apt-get update -y +RUN apt-get upgrade -y -RUN apk update && apk upgrade && \ - apk add --no-cache git tzdata ffmpeg wget curl +RUN apt-get install -y git tzdata ffmpeg wget curl RUN npm i -g npm@latest