v.0.10.0 redesign prj structure, multi dev containers

This commit is contained in:
tiijay
2025-11-20 11:50:19 +00:00
parent 53b1b96fb3
commit 76a8203458
52 changed files with 63 additions and 83 deletions

View File

@@ -0,0 +1,34 @@
#Moin from VSCode
# FROM python:3.13-slim
# RUN apt-get update && apt-get install -y \
# git \
# curl \
# wget \
# && rm -rf /var/lib/apt/lists/*
FROM python:3.13-alpine
RUN apk add --no-cache \
git \
curl \
wget \
bash \
build-base \
linux-headers \
# Fish Shell hinzufügen
fish
# mpremote Symlink in postCreateCommand erstellen
# Oder direkt in der Dockerfile:
RUN pip install mpremote && \
ln -sf /usr/local/bin/mpremote /usr/bin/mpremote || true
# # Optional: Benutzer erstellen
RUN adduser -D -s /bin/bash vscode
USER vscode
WORKDIR /workspace
# Standard Shell auf Fish setzen (optional)
SHELL ["/usr/bin/fish", "-c"]