Skip to content

Commit e721112

Browse files
authored
Merge branch 'main' into test/recentissues
2 parents 07c3823 + ff71251 commit e721112

File tree

8 files changed

+306
-307
lines changed

8 files changed

+306
-307
lines changed

backend/README.md

Whitespace-only changes.

backend/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG OWASP_GID=1000
22
ARG OWASP_UID=1000
33

4-
FROM python:3.13.6-alpine AS builder
4+
FROM python:3.13.7-alpine AS builder
55

66
ARG OWASP_GID
77
ARG OWASP_UID
@@ -42,7 +42,7 @@ COPY settings settings
4242
COPY static static
4343
COPY templates templates
4444

45-
FROM python:3.13.6-alpine
45+
FROM python:3.13.7-alpine
4646

4747
ARG OWASP_GID
4848
ARG OWASP_UID

backend/docker/Dockerfile.local

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.6-alpine AS builder
1+
FROM python:3.13.7-alpine AS builder
22

33
SHELL ["/bin/sh", "-o", "pipefail", "-c"]
44

@@ -30,7 +30,7 @@ COPY --chmod=444 --chown=root:root poetry.lock pyproject.toml ./
3030
RUN --mount=type=cache,target=${POETRY_CACHE_DIR},uid=${OWASP_UID},gid=${OWASP_GID} \
3131
poetry install --no-root --without dev --without test
3232

33-
FROM python:3.13.6-alpine
33+
FROM python:3.13.7-alpine
3434

3535
SHELL ["/bin/sh", "-o", "pipefail", "-c"]
3636

backend/docker/Dockerfile.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.6-alpine AS builder
1+
FROM python:3.13.7-alpine AS builder
22

33
ENV APK_CACHE_DIR="/home/owasp/.cache/apk-backend-test" \
44
APK_SYMLINK_DIR="/etc/apk/cache" \
@@ -36,7 +36,7 @@ COPY static static
3636
COPY templates templates
3737
COPY tests tests
3838

39-
FROM python:3.13.6-alpine
39+
FROM python:3.13.7-alpine
4040

4141
RUN addgroup -S owasp && \
4242
adduser -S -h /home/owasp -G owasp owasp && \

backend/poetry.lock

Lines changed: 191 additions & 192 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cspell/pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/docker/Dockerfile.local

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13.6-alpine AS builder
1+
FROM python:3.13.7-alpine AS builder
22

33
SHELL ["/bin/sh", "-o", "pipefail", "-c"]
44

@@ -31,7 +31,7 @@ RUN --mount=type=cache,target=${POETRY_CACHE_DIR},uid=${OWASP_UID},gid=${OWASP_G
3131
poetry install --no-root && \
3232
rm -rf docs/poetry.lock docs/pyproject.toml
3333

34-
FROM python:3.13.6-alpine
34+
FROM python:3.13.7-alpine
3535

3636
SHELL ["/bin/sh", "-o", "pipefail", "-c"]
3737

0 commit comments

Comments
 (0)