diff --git a/examples/iowrt/Dockerfile b/examples/iowrt/Dockerfile index 91b4f63674df524f3cebacdd0951c7d0a280f5a1..60e0e8d458b27d0a71aee0d0f2f30c3ab9e536be 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"