feat: enable Git support in devcontainer (#136)

Co-authored-by: gagb <gagb@users.noreply.github.com>
This commit is contained in:
numekudi
2024-12-21 11:09:17 +09:00
committed by GitHub
parent cfd2319c14
commit f94d09990e
2 changed files with 10 additions and 2 deletions

View File

@@ -2,10 +2,15 @@ FROM python:3.13-slim-bullseye
USER root
ARG INSTALL_GIT=false
RUN if [ "$INSTALL_GIT" = "true" ]; then \
apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*; \
fi
# Runtime dependency
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*
RUN pip install markitdown