Skip to content

Commit 8e26383

Browse files
authored
Merge pull request #56 from weeklydevchat/feature/lock-docker-to-python-3-14
Lock Docker image to Python 3.14
2 parents 9a2a745 + 2dc9658 commit 8e26383

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
services:
22
app:
3-
image: python:3-slim
3+
image: python:3.14-slim
44
command: mkdocs serve -a 0.0.0.0:8000
55
entrypoint: /app/docker-entrypoint.sh
66
working_dir: /app
77
ports:
88
- 8000:8000
99
volumes:
1010
- .:/app
11-
- python-packages:/usr/local/lib/python3.x/site-packages/
11+
- python-packages:/usr/local/lib/python3.14/site-packages/
1212

1313
volumes:
1414
python-packages:

0 commit comments

Comments
 (0)