Use slim Python base images for Dockerfiles

This commit is contained in:
Eduardo Silva 2025-02-03 12:50:54 -03:00
parent 51bbf69038
commit 32ce273320
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.12-slim
WORKDIR /app

View file

@ -1,4 +1,4 @@
FROM python:3.12
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \