diff --git a/Dockerfile b/Dockerfile index 70ca102..faa1c0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -105,9 +105,12 @@ RUN git clone https://github.com/libimobiledevice/usbmuxd && cd usbmuxd \ # Create main image FROM ubuntu:22.04 as main -LABEL url="https://mvt.re" -LABEL vcs-url="https://github.com/mvt-project/mvt" -LABEL description="MVT is a forensic tool to look for signs of infection in smartphone devices." +LABEL org.opencontainers.image.url="https://mvt.re" +LABEL org.opencontainers.image.documentation="https://docs.mvt.re" +LABEL org.opencontainers.image.source="https://github.com/mvt-project/mvt" +LABEL org.opencontainers.image.title="Mobile Verification Toolkit" +LABEL org.opencontainers.image.description="MVT is a forensic tool to look for signs of infection in smartphone devices." +LABEL org.opencontainers.image.base.name=docker.io/library/ubuntu:22.04 # Install runtime dependencies ARG DEBIAN_FRONTEND=noninteractive diff --git a/Dockerfile.android b/Dockerfile.android index 1e432dd..be44167 100644 --- a/Dockerfile.android +++ b/Dockerfile.android @@ -1,9 +1,12 @@ # Create main image FROM python:3.10.14-alpine3.20 as main -LABEL url="https://mvt.re" -LABEL vcs-url="https://github.com/mvt-project/mvt" -LABEL description="MVT is a forensic tool to look for signs of infection in smartphone devices." +LABEL org.opencontainers.image.url="https://mvt.re" +LABEL org.opencontainers.image.documentation="https://docs.mvt.re" +LABEL org.opencontainers.image.source="https://github.com/mvt-project/mvt" +LABEL org.opencontainers.image.title="Mobile Verification Toolkit (Android)" +LABEL org.opencontainers.image.description="MVT is a forensic tool to look for signs of infection in smartphone devices." +LABEL org.opencontainers.image.base.name=docker.io/library/python:3.10.14-alpine3.20 # Install runtime dependencies RUN apk add --no-cache \ diff --git a/Dockerfile.ios b/Dockerfile.ios index 6ba18c8..ed3ec99 100644 --- a/Dockerfile.ios +++ b/Dockerfile.ios @@ -106,9 +106,12 @@ RUN git clone https://github.com/libimobiledevice/usbmuxd && cd usbmuxd \ # ---------- FROM python:3.10.14-alpine3.20 as main -LABEL url="https://mvt.re" -LABEL vcs-url="https://github.com/mvt-project/mvt" -LABEL description="MVT is a forensic tool to look for signs of infection in smartphone devices." +LABEL org.opencontainers.image.url="https://mvt.re" +LABEL org.opencontainers.image.documentation="https://docs.mvt.re" +LABEL org.opencontainers.image.source="https://github.com/mvt-project/mvt" +LABEL org.opencontainers.image.title="Mobile Verification Toolkit (iOS)" +LABEL org.opencontainers.image.description="MVT is a forensic tool to look for signs of infection in smartphone devices." +LABEL org.opencontainers.image.base.name=docker.io/library/python:3.10.14-alpine3.20 # Install runtime dependencies RUN apk add --no-cache \