Compare commits

..

1 Commits

Author SHA1 Message Date
d2cce68cf9 feat: add convenience functions, update Docker setup, and integrate Webpack for building WebRTC internals exporter
Some checks failed
Build Docker Images for Pull Request / build (pull_request) Failing after 36s
2025-02-19 21:59:20 +01:00

View File

@@ -1,7 +1,8 @@
FROM debian:bookworm-slim
# Install Python and curl
RUN apt-get update && apt-get install -y python3 python3-pip python3-venv curl
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
apt-get update && apt-get install -y python3 python3-pip python3-venv curl
# Create and activate a virtual environment
RUN python3 -m venv /app/venv