Files
xtream_codes_m3u_list_builder/.devcontainer/Dockerfile
2026-02-01 17:51:28 +00:00

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