feat(dockerfile): updated Dockerfile labels

This commit is contained in:
Ritesh Ghosh
2023-08-20 13:44:05 +05:30
parent fa2c50918b
commit bc5364fbf1
+3 -2
View File
@@ -16,8 +16,9 @@ RUN npm run build
# prod stage for including only necessary files
FROM node:18-alpine as prod
LABEL org.opencontainers.image.source https://github.com/ghoshRitesh12/aniwatch-api
LABEL org.opencontainers.image.description "Aniwatch API docker image"
LABEL org.opencontainers.image.source=https://github.com/ghoshRitesh12/aniwatch-api
LABEL org.opencontainers.image.description="Aniwatch API docker image"
LABEL org.opencontainers.image.licenses=MIT
# create a non-privileged user
RUN addgroup -S aniwatch && adduser -S zoro -G aniwatch