From e312bd5091b44c5e691571b11979a91f31fb8896 Mon Sep 17 00:00:00 2001 From: Bhavesh Shah Date: Thu, 7 Dec 2023 13:15:05 +0530 Subject: [PATCH] added container documentation --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2ad9acd..c2fd858 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ FROM python:3.8-alpine +LABEL org.opencontainers.image.source=https://github.com/RalphTro/epcis-event-hash-generator +LABEL org.opencontainers.image.description="This container hosts web services for generating event hash. Basically supports `GET /health` and `POST /hash` http endpoints." + RUN apk --no-cache --update add bash inotify-tools curl WORKDIR /usr/src/app