Fix worker runtime image for node-av
This commit is contained in:
parent
4090552e2c
commit
3987867d71
1 changed files with 4 additions and 2 deletions
|
|
@ -1,8 +1,10 @@
|
|||
FROM node:20-alpine
|
||||
FROM node:20-bookworm-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apk add --no-cache ffmpeg python3 make g++
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends ffmpeg python3 make g++ \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY package.json /app/package.json
|
||||
RUN npm install --omit=dev
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue