fix: clean apt cache

This commit is contained in:
George Panchuk 2024-01-05 11:18:37 +01:00
parent 79bfd265c6
commit 000afd6188
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ RUN npm run build
FROM python:3.11-slim-bookworm
RUN apt-get update -y && apt-get install -y gcc
RUN apt-get update -y && apt-get install -y gcc && rm -rf /var/lib/apt/lists/*
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1