@oalacea/demon 1.0.7 → 1.0.8
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
|
@@ -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 \
|