From d6e5bdbd9189ccc54bf2c1188ed025aafdfb8d70 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sun, 25 Sep 2022 17:08:01 +0200 Subject: [PATCH] Updated docker image source repo url position within docker file --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 269bd87..eb3c5ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM node:18 +LABEL org.opencontainers.image.source https://github.com/kevinmidboe/seasonedShows RUN mkdir -p /opt/seasonedShows/src @@ -17,5 +18,3 @@ RUN cp configurations/development.json.example configurations/production.json EXPOSE 31459 CMD ["yarn", "start"] - -LABEL org.opencontainers.image.source https://github.com/kevinmidboe/seasonedShows