TheFirstOython commited on
Commit
31b4617
·
verified ·
1 Parent(s): ee3ec02

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -1,5 +1,10 @@
1
  FROM node:18-slim
2
 
 
 
 
 
 
3
  WORKDIR /app
4
 
5
  COPY package*.json ./
 
1
  FROM node:18-slim
2
 
3
+ # Install ffmpeg and dependencies
4
+ RUN apt-get update && \
5
+ apt-get install -y ffmpeg && \
6
+ rm -rf /var/lib/apt/lists/*
7
+
8
  WORKDIR /app
9
 
10
  COPY package*.json ./