Files
ipam/.devcontainer/Dockerfile
T
2025-05-27 17:55:08 +00:00

13 lines
287 B
Docker

FROM mcr.microsoft.com/devcontainers/python:3.13
# Install system dependencies
RUN apt-get update && apt-get install -y \
sqlite3 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /workspace
# Default command
CMD ["sleep", "infinity"]