removed apt

This commit is contained in:
randogoth 2025-09-27 14:09:02 +03:00
parent 6ec4d1e1ae
commit b8d67bc88b

View file

@ -8,12 +8,6 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
# Workdir
WORKDIR /usr/src/app
# Install OS deps first (so pip layer can cache better)
# You mentioned custom markovify & git, so we keep git.
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
&& rm -rf /var/lib/apt/lists/*
# Copy only requirements first to leverage Docker layer cache
COPY requirements.txt .