Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.5-alpine3.21 AS builder
FROM python:3.13.6-alpine3.21 AS builder

WORKDIR /app

Expand All @@ -14,7 +14,7 @@ RUN apk add --no-cache \
RUN pip install --no-cache-dir --prefix=/install paho-mqtt
RUN pip install --no-cache-dir --prefix=/install callattendant@git+https://github.com/thess/[email protected]

FROM python:3.13.5-alpine3.21
FROM python:3.13.6-alpine3.21

COPY --from=builder /install /usr/local

Expand Down