@oalacea/demon 1.0.7 → 1.0.9

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.
Files changed (2) hide show
  1. package/bin/Dockerfile +4 -3
  2. package/package.json +1 -1
package/bin/Dockerfile CHANGED
@@ -4,8 +4,9 @@ FROM node:20-slim
4
4
  LABEL maintainer="Yanis"
5
5
  LABEL description="Demon - Automated testing tools for web applications"
6
6
 
7
- # Install system dependencies for Playwright
7
+ # Install system dependencies for Playwright and wget with SSL
8
8
  RUN apt-get update && apt-get install -y --no-install-recommends \
9
+ ca-certificates \
9
10
  libnss3 \
10
11
  libnspr4 \
11
12
  libatk1.0-0 \
@@ -45,8 +46,8 @@ ARG TARGETARCH=amd64
45
46
  RUN ARCH=$([ "$TARGETARCH" = "arm64" ] && echo "arm64" || echo "amd64") && \
46
47
  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 && \
47
48
  tar -xzf /tmp/k6.tar.gz -C /tmp && \
48
- mv /tmp/k6-v1.5.0/k6 /usr/local/bin/ && \
49
- rm -rf /tmp/k6.tar.gz /tmp/k6-v1.5.0
49
+ mv /tmp/k6-v1.5.0-linux-${ARCH}/k6 /usr/local/bin/ && \
50
+ rm -rf /tmp/k6.tar.gz /tmp/k6-v1.5.0-linux-${ARCH}
50
51
 
51
52
  # Install additional tools
52
53
  RUN npm install -g \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oalacea/demon",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "AI-powered automated test generation and remediation for web applications",
5
5
  "author": "Yanis",
6
6
  "license": "MIT",