diff --git a/graph_gen/Dockerfile b/graph_gen/Dockerfile index 0414be7..986cc41 100644 --- a/graph_gen/Dockerfile +++ b/graph_gen/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.2-alpine AS builder +FROM python:3.13.3-alpine AS builder RUN apk update && apk add curl @@ -18,7 +18,7 @@ RUN poetry config virtualenvs.create false && \ poetry install --only main --no-root --no-interaction --no-ansi --no-cache; -FROM python:3.13.2-alpine +FROM python:3.13.3-alpine LABEL authors="irudenko" ENV PYTHONUNBUFFERED=1