Skip to content

Commit 410bd2d

Browse files
committed
upd python version
1 parent c4ef68a commit 410bd2d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
echo "REGISTRY=${REGISTRY}" >> $GITHUB_ENV
3434
echo "IMAGE_NAME=${IMAGE_NAME,,}" >> $GITHUB_ENV
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
- uses: docker/setup-qemu-action@v3
3737
- uses: docker/setup-buildx-action@v3
3838
- uses: docker/build-push-action@v6

dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dokerfile to create the container image for the DCA app
2-
FROM python:3.12
2+
FROM python:3.14-slim
33
LABEL maintainer="Wolf Paulus <[email protected]>"
44

55
RUN apt-get update && \
@@ -19,4 +19,4 @@ EXPOSE 8000
1919
ENV PYTHONDONTWRITEBYTECODE=1
2020
ENV PYTHONUNBUFFERED=1
2121
ENV PYTHONPATH=/dca
22-
CMD ["python3.12", "-m", "streamlit", "run", "--server.port", "8000", "src/app.py"]
22+
CMD ["python3.14", "-m", "streamlit", "run", "--server.port", "8000", "src/app.py"]

src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def ui(default_ticker: str) -> None:
8080
st.write(
8181
"""
8282
This program is for educational purposes only and does not constitute investment advice.\n
83-
Version 1.3.3 © 2024 [Wolf Paulus](https://wolfpaulus.com). All Rights Reserved.
83+
Version 1.3.4 © 2024-2026 [Wolf Paulus](https://wolfpaulus.com). All Rights Reserved.
8484
"""
8585
)
8686

0 commit comments

Comments
 (0)