Use OCI standard labels for docker image

This commit is contained in:
scribblemaniac
2024-06-28 14:41:15 -06:00
parent 89d31f3212
commit 79dbf999a9
3 changed files with 18 additions and 9 deletions

View File

@@ -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 \