Simplified Dockerfile

This commit is contained in:
Adam Fourney 2025-03-25 10:31:12 -07:00
parent cfbd62466c
commit fd8994869b

View file

@ -9,12 +9,6 @@ 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/*