32 lines
617 B
Docker
32 lines
617 B
Docker
FROM python:3.13-slim-bullseye
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV EXIFTOOL_PATH=/usr/bin/exiftool
|
|
ENV FFMPEG_PATH=/usr/bin/ffmpeg
|
|
|
|
# Runtime dependency
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ffmpeg \
|
|
exiftool
|
|
|
|
ARG INSTALL_GIT=false
|
|
RUN if [ "$INSTALL_GIT" = "true" ]; then \
|
|
apt-get install -y --no-install-recommends \
|
|
git; \
|
|
fi
|
|
|
|
# Cleanup
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . /app
|
|
RUN pip --no-cache-dir install /app
|
|
|
|
WORKDIR /workdir
|
|
|
|
# Default USERID and GROUPID
|
|
ARG USERID=nobody
|
|
ARG GROUPID=nogroup
|
|
|
|
USER $USERID:$GROUPID
|
|
|
|
ENTRYPOINT [ "markitdown-mcp" ]
|