switch to node-alpine image for docker

This commit is contained in:
Ayden Jahola 2025-09-20 03:11:09 +01:00
parent a56511b469
commit 03ce663a7e

View file

@ -2,13 +2,13 @@ FROM node:24-alpine
WORKDIR /app WORKDIR /app
RUN apt-get update && \ RUN apk update && \
apt-get install -y \ apk add --no-cache \
ffmpeg \ ffmpeg \
build-essential \ build-base \
python3 \ python3 \
git \ git \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/cache/apk/*
COPY package*.json ./ COPY package*.json ./