From 7a5ef15f15ab8fd81c32fcb7c279521532b5e59c Mon Sep 17 00:00:00 2001 From: Vivek Kumar Dutta <vivek.dutta@iopsys.eu> Date: Fri, 6 Jun 2025 14:58:49 +0530 Subject: [PATCH] Updated iowrt example --- examples/iowrt/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/iowrt/Dockerfile b/examples/iowrt/Dockerfile index 91b4f63..60e0e8d 100644 --- a/examples/iowrt/Dockerfile +++ b/examples/iowrt/Dockerfile @@ -1,5 +1,5 @@ # Alpine Base -FROM alpine:latest AS builder +FROM alpine:3.22 AS builder # Staging area RUN apk add --no-cache git cmake make clang build-base llvm-static llvm-dev clang-static clang-dev json-c-dev lua5.1-dev @@ -38,11 +38,11 @@ COPY src src RUN make -C /src # Final image -FROM alpine:latest +FROM alpine:3.22 -MAINTAINER Vivek Dutta "vivek.dutta@iopsys.eu" ENV VERSION=devel LABEL vendor=IOPSYS \ + org.opencontainers.image.author="vivek.dutta@iopsys.eu"\ org.opencontainers.image.version=$VERSION\ org.opencontainers.image.vendor="IOPSYS" \ org.opencontainers.image.description="IOWRT Application container" -- GitLab