We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1315d22 commit 03fea0bCopy full SHA for 03fea0b
Dockerfile
@@ -15,6 +15,8 @@ RUN pip3 install --no-cache --upgrade pip setuptools virtualenv
15
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
16
RUN chmod +x /usr/local/bin/entrypoint.sh
17
18
+# Core dump limits will be set in entrypoint.sh
19
+
20
USER chrome
21
22
#@todo Add some random collection of fonts and other stuff to blur the fingerprint a bit
entrypoint.sh
@@ -1,4 +1,7 @@
1
#!/bin/sh
2
+# Disable core dumps to prevent large files
3
+ulimit -c 0
4
5
# Start Xvfb in background if headful mode might be used
6
if [ "${CHROME_HEADFUL}" = "true" ] || [ "${ENABLE_XVFB}" = "true" ]; then
7
echo "Starting Xvfb on display :99"
0 commit comments