Compare commits

..

1 Commits

Author SHA1 Message Date
3c59c3e927 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 4m8s
2025-02-19 22:03:30 +01:00

View File

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