From fb4e1d4451bb8085542ca5eafa98e23693b1eaea Mon Sep 17 00:00:00 2001 From: Daniel Sincere <103295874+DanielSincere@users.noreply.github.com> Date: Wed, 23 Oct 2024 11:42:37 -0400 Subject: [PATCH] update docker file to include resources for web login (#21) Co-authored-by: Daniel Sincere --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 76f5f3f..6c85dd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ COPY --from=builder /usr/lib/swift/ /usr/lib/swift/ FROM production as web ENV PORT 80 EXPOSE $PORT +COPY ./Resources ./Resources CMD /app/SincereAuthServer serve --env production --hostname 0.0.0.0 -p $PORT FROM production as queues