chore(mcpbox): use ubuntu:24.04 as base (#86)

Signed-off-by: mudler <mudler@localai.io>
This commit is contained in:
Ettore Di Giacinto
2025-04-25 17:06:50 +02:00
committed by GitHub
parent c1844f7230
commit b81624bfc2

View File

@@ -20,10 +20,10 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o mcpbox ./cmd/mcpbox
# Final stage
FROM alpine:3.19
FROM ubuntu:22.04
# Install runtime dependencies
RUN apk add --no-cache ca-certificates tzdata docker
RUN apt-get update && apt-get install -y ca-certificates tzdata docker.io bash
# Create non-root user
#RUN adduser -D -g '' appuser