13 lines
287 B
Docker
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"] |