Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# for optimized python builds
# we follow solution #2 described in https://pythonspeed.com/articles/multi-stage-docker-python/

FROM python:3.10-slim as builder
FROM python:3.13-slim as builder

RUN python -m venv /root/.venv

Expand All @@ -18,7 +18,7 @@ RUN pip install .

# ---------------------------------------------------------------------------------------------------------------------------

FROM python:3.10-slim as final
FROM python:3.13-slim as final

ARG LNDMANAGE_EXTRA_PACKAGES
RUN ([ ! -z $LNDMANAGE_EXTRA_PACKAGES ] && \
Expand Down