added pre-development files

This commit is contained in:
2026-05-02 14:11:18 +02:00
parent 15b1173937
commit 722d60a579
5 changed files with 146 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
FROM python:3.14-slim
ARG USERNAME=vscode
WORKDIR /workspace
# Install system dependencies
RUN apt-get update && apt-get install -y \
postgresql-client \
iputils-ping \
nmap \
build-essential \
libpq-dev \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
apt-get install -y nodejs
# Install Python dependencies
COPY ../requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Expose port
EXPOSE 8000
# Default command (overridden by devcontainer.json)
CMD ["sleep", "infinity"]