Skip to content

Commit 97eb301

Browse files
committed
chore: use python:3.11-alpine base image with no vurnerabilites
1 parent ecbf584 commit 97eb301

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

.dockerignore

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1-
.git
1+
# Python Specific
22
__pycache__
3-
./scripts
3+
*.pyc
4+
*.pyo
5+
*.pyd
6+
.Python
7+
env
8+
venv
9+
pip-log.txt
10+
pip-delete-this-directory.txt
11+
.tox
12+
.coverage
13+
.coverage.*
14+
.cache
15+
nosetests.xml
16+
coverage.xml
17+
*.cover
18+
*.log
19+
.git
20+
.mypy_cache
21+
.pytest_cache
22+
.hypothesis

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9-buster
1+
FROM python:3.11-alpine
22

33
WORKDIR /app
44

0 commit comments

Comments
 (0)