fix: added dependencies to Dockerfile

This commit is contained in:
theoleuthardt 2025-02-22 22:29:47 +01:00
parent 1a63971fff
commit 2e6bb7053c

View file

@ -2,7 +2,11 @@
FROM node:18-alpine AS base
# Install system dependencies
RUN apk add --no-cache libc6-compat libreoffice ttf-liberation
RUN apk add --no-cache libc6-compat libreoffice ttf-liberation ffmpeg
RUN apk add --update --no-cache python3 py3-pip \
&& ln -sf python3 /usr/bin/python \
&& pip3 install --no-cache --upgrade pip setuptools \
RUN pip3 install --no-cache watchdog gradio rembg
WORKDIR /app