Add Dockerfile for development environment setup with Python, Git, and Poetry

This commit is contained in:
2026-02-01 16:30:40 +00:00
parent 72c3b3ec78
commit dd8c3e0998

5
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
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