@oalacea/demon 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/Dockerfile +2 -1
- package/package.json +1 -1
package/bin/Dockerfile
CHANGED
|
@@ -23,6 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
23
23
|
libasound2 \
|
|
24
24
|
libatspi2.0-0 \
|
|
25
25
|
libxshmfence1 \
|
|
26
|
+
wget \
|
|
26
27
|
&& rm -rf /var/lib/apt/lists/*
|
|
27
28
|
|
|
28
29
|
# Install Playwright browsers
|
|
@@ -42,7 +43,7 @@ RUN npm install -g \
|
|
|
42
43
|
# Install k6 for performance testing
|
|
43
44
|
ARG TARGETARCH=amd64
|
|
44
45
|
RUN ARCH=$([ "$TARGETARCH" = "arm64" ] && echo "arm64" || echo "amd64") && \
|
|
45
|
-
wget -q "https://github.com/grafana/k6/releases/download/
|
|
46
|
+
wget -q "https://github.com/grafana/k6/releases/download/v1.5.0/k6-v1.5.0-linux-${ARCH}.tar.gz" -O /tmp/k6.tar.gz && \
|
|
46
47
|
tar -xzf /tmp/k6.tar.gz -C /usr/local/bin && \
|
|
47
48
|
rm /tmp/k6.tar.gz
|
|
48
49
|
|