Skip to content

Commit 08d7b16

Browse files
committed
Merge remote-tracking branch 'origin/minor-improvements'
2 parents ba4695a + 2bc9fe4 commit 08d7b16

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
*.pyc
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
25
*.db
36
.installed.cfg
47
parts
@@ -26,9 +29,15 @@ _build
2629
pip-selfcheck.json
2730
pyvenv.cfg
2831
geckodriver.log
32+
33+
# Various junk and temp files
2934
.DS_Store
35+
*~
36+
.*.sw[po]
37+
.build
38+
.ve
39+
*.bak
3040
var
31-
.metaflow
3241
share
3342
selenium
3443
local

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ FROM --platform=linux/amd64 python:3.9
2424

2525
WORKDIR /app
2626

27+
# Python settings: Force unbuffered stdout and stderr (i.e. they are flushed to terminal immediately)
2728
ENV PYTHONUNBUFFERED 1
29+
# Python settings: do not write pyc files
2830
ENV PYTHONDONTWRITEBYTECODE 1
2931

3032
# OS requirements as per

0 commit comments

Comments
 (0)