Added Docker Image for using markitdown in a sandboxed environment

This commit is contained in:
Michele Adduci
2024-12-16 13:08:15 +01:00
parent 81e3f24acd
commit 013b022427
3 changed files with 20 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.13-alpine
USER root
# Runtime dependency
RUN apk add --no-cache ffmpeg
RUN pip install markitdown
USER 10000:10000
ENTRYPOINT [ "markitdown" ]