@oalacea/demon 1.0.8 → 1.1.0

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 +3 -3
  2. package/package.json +1 -1
package/bin/Dockerfile CHANGED
@@ -46,14 +46,14 @@ ARG TARGETARCH=amd64
46
46
  RUN ARCH=$([ "$TARGETARCH" = "arm64" ] && echo "arm64" || echo "amd64") && \
47
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 && \
48
48
  tar -xzf /tmp/k6.tar.gz -C /tmp && \
49
- mv /tmp/k6-v1.5.0/k6 /usr/local/bin/ && \
50
- 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}
51
51
 
52
52
  # Install additional tools
53
53
  RUN npm install -g \
54
54
  supertest \
55
55
  msw \
56
- @prisma/cli
56
+ prisma
57
57
 
58
58
  # Create non-root user for security
59
59
  RUN useradd -m -u 1000 -s /bin/bash demon && \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oalacea/demon",
3
- "version": "1.0.8",
3
+ "version": "1.1.0",
4
4
  "description": "AI-powered automated test generation and remediation for web applications",
5
5
  "author": "Yanis",
6
6
  "license": "MIT",