From 9a7767a738eebb16bc3d720bee055e196d5e486c Mon Sep 17 00:00:00 2001 From: Andrew Mirsky Date: Fri, 27 Jun 2025 13:40:21 -0400 Subject: [PATCH] dockerfile build update to support psutils --- Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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