From f8c0c4f70cf23346c0e31d88e24ec09dc9c52861 Mon Sep 17 00:00:00 2001 From: Martin Krivosija <42486612+kriiv@users.noreply.github.com> Date: Mon, 31 Mar 2025 23:34:12 +0200 Subject: [PATCH] repo url --- DockerFile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DockerFile b/DockerFile index bd31ccc..156e91e 100644 --- a/DockerFile +++ b/DockerFile @@ -11,7 +11,7 @@ ENV NODE_ENV="production" \ WORKDIR /app RUN apk add --no-cache --virtual=.build-deps git \ - && git clone https://github.com/softbounce/inbound-email.git . \ + && git clone https://github.com/kriiv/inbound-email.git . \ && if [ -n "${VERSION}" ]; then \ NUMBER_COMMITS_TO_REVERT=$(( $(git rev-list --count --first-parent HEAD) - $(echo "${VERSION}" | cut -d "." -f3) )); \ git checkout "master~${NUMBER_COMMITS_TO_REVERT}"; \ @@ -24,4 +24,4 @@ RUN apk add --no-cache --virtual=.build-deps git \ USER node EXPOSE 2525 CMD node server.js -LABEL org.opencontainers.image.source="https://github.com/softbounce/inbound-email" \ No newline at end of file +LABEL org.opencontainers.image.source="https://github.com/kriiv/inbound-email" \ No newline at end of file