Skip to content

Commit

Permalink
tests: returned explicit indication of python interpreter version for…
Browse files Browse the repository at this point in the history
… images in dockerfiles
  • Loading branch information
alexted committed Oct 30, 2024
1 parent 1c994de commit de2750f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.it
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:alpine AS builder
FROM python:3.13-alpine AS builder

RUN apk add --no-cache --update --virtual .build-deps \
build-base \
Expand All @@ -18,7 +18,7 @@ RUN pip install pip setuptools wheel --upgrade \
&& pip wheel --wheel-dir=/svc/wheels -r tests.txt \
&& pip install poetry-core>=1.0.0

FROM python:alpine
FROM python:3.13-alpine

ENV PYTHONUNBUFFERED=1 \
DEBUG=0 \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.local
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:alpine AS builder
FROM python:3.13-alpine AS builder

RUN apk add --no-cache --update --virtual .build-deps \
build-base \
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN pip install pip wheel --upgrade \
&& python setup.py bdist_wheel --dist-dir /svc/dist \
|| pip wheel --wheel-dir=/svc/wheels -e ${PROJECT_PATH}

FROM python:alpine
FROM python:3.13-alpine

ENV PYTHONUNBUFFERED=1 \
DEBUG=0 \
Expand Down

0 comments on commit de2750f

Please sign in to comment.