diff --git a/Dockerfile b/Dockerfile index 1168385..41c69a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # -- build stage, install dependencies only using `uv` FROM python:3.13-alpine AS build - +RUN apk add gcc python3-dev musl-dev linux-headers RUN pip install uv WORKDIR /app diff --git a/Makefile b/Makefile index b27b5e8..de56ecf 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Image name and tag IMAGE_NAME := amqtt IMAGE_TAG := latest -VERSION_TAG := 0.11.0 +VERSION_TAG := 0.11.1 REGISTRY := amqtt/$(IMAGE_NAME) # Platforms to build for