Skip to content

Commit

Permalink
chore(deps): update python docker tag to v3.13.1 (#161)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 19, 2024
1 parent 2c125af commit 9d09121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.4-alpine as builder
FROM python:3.13.1-alpine as builder

Check warning on line 1 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand All @@ -21,7 +21,7 @@ COPY requirements.txt .
RUN --mount=type=cache,target=/root/.cache/pip \
python -m pip install -r requirements.txt --prefix=/install

FROM python:3.12.4-alpine as runtime
FROM python:3.13.1-alpine as runtime

Check warning on line 24 in Dockerfile

View workflow job for this annotation

GitHub Actions / build

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ARG UID=10001
RUN adduser \
Expand Down

0 comments on commit 9d09121

Please sign in to comment.