generated from unai/python_boilerplate
6 lines
183 B
Docker
6 lines
183 B
Docker
FROM python:3.14-slim
|
|
# Instalar git y herramientas básicas
|
|
RUN apt-get update && apt-get install -y git curl && rm -rf /var/lib/apt/lists/*
|
|
# Instalar Poetry
|
|
RUN pip install poetry
|