1
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
37e4aa6864
Merge pull request 'chore(deps): update python docker tag to v3.13.2' (#161) from renovate/python-3.x into master
All checks were successful
build/base Building image base
build/frp Building image frp
build/lua-clib Building image lua-clib
build/fluentd Building image fluentd
build/ruby-script Building image ruby-script
build/forgejo Building image forgejo
build/node-script Building image node-script
Reviewed-on: #161
2025-02-18 13:06:19 +00:00
5bea12a87f
chore(deps): update python docker tag to v3.13.2 2025-02-06 22:30:20 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ RUN set -eux; \
find . -type f -name '*.py[c0]' -delete; \ find . -type f -name '*.py[c0]' -delete; \
find . -type d -name "__pycache__" -delete; find . -type d -name "__pycache__" -delete;
FROM python:3.13.1-slim AS build_env FROM python:3.13.2-slim AS build_env
ARG BEANCOUNT_VERSION ARG BEANCOUNT_VERSION
ENV PATH "/app/bin:$PATH" ENV PATH "/app/bin:$PATH"
@ -44,7 +44,7 @@ RUN set -eux; \
rm -r /app/share; \ rm -r /app/share; \
find /app -name __pycache__ -exec rm -rf -v {} + find /app -name __pycache__ -exec rm -rf -v {} +
FROM python:3.13.1-slim FROM python:3.13.2-slim
COPY --from=build_env /app /app COPY --from=build_env /app /app
# Default fava port number # Default fava port number

View file

@ -1,4 +1,4 @@
FROM python:3.13.1-slim-bookworm FROM python:3.13.2-slim-bookworm
RUN set -e; \ RUN set -e; \
apt-get update -q; \ apt-get update -q; \