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.
2 parents ba4695a + 2bc9fe4 commit 08d7b16Copy full SHA for 08d7b16
.gitignore
@@ -1,4 +1,7 @@
1
-*.pyc
+# Byte-compiled / optimized / DLL files
2
+__pycache__/
3
+*.py[cod]
4
+
5
*.db
6
.installed.cfg
7
parts
@@ -26,9 +29,15 @@ _build
26
29
pip-selfcheck.json
27
30
pyvenv.cfg
28
31
geckodriver.log
32
33
+# Various junk and temp files
34
.DS_Store
35
+*~
36
+.*.sw[po]
37
+.build
38
+.ve
39
+*.bak
40
var
-.metaflow
41
share
42
selenium
43
local
Dockerfile
@@ -24,7 +24,9 @@ FROM --platform=linux/amd64 python:3.9
24
25
WORKDIR /app
+# Python settings: Force unbuffered stdout and stderr (i.e. they are flushed to terminal immediately)
ENV PYTHONUNBUFFERED 1
+# Python settings: do not write pyc files
ENV PYTHONDONTWRITEBYTECODE 1
# OS requirements as per
0 commit comments