Compare commits

..

1 Commits

Author SHA1 Message Date
f7dc468858 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 4m40s
2025-02-20 11:06:37 +01:00

View File

@@ -15,7 +15,8 @@ RUN npm run build
FROM selenium/standalone-chromium:129.0
# Install Python-virtualenv
RUN sudo apt-get update && sudo sudo apt-get install -y python3-venv
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
sudo apt-get update && sudo sudo apt-get install -y python3-venv
WORKDIR /tmp
@@ -25,7 +26,8 @@ RUN wget -q https://repos.influxdata.com/influxdata-archive_compat.key && \
cat influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null && \
echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main' | sudo tee /etc/apt/sources.list.d/influxdata.list
RUN sudo apt-get update && sudo apt-get install -y telegraf
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
sudo apt-get update && sudo apt-get install -y telegraf
# Create and activate a virtual environment
RUN python3 -m venv ./venv