From 6cb031930bed79ac109c85f7d4603f51852c5a97 Mon Sep 17 00:00:00 2001 From: Zig Blathazar <42387185+ZigBalthazar@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:34:21 +0330 Subject: [PATCH] Fix/docker (#66) --- dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 14722cd..2c338ef 100644 --- a/dockerfile +++ b/dockerfile @@ -31,10 +31,11 @@ ENV IMMO_MONGO_URI=${IMMO_MONGO_URI} #* Copy the compiled binary from the builder stage COPY --from=builder /app/build/immortal . +COPY --from=builder /app/config/config.yml . #* Expose necessary ports for the application EXPOSE 7777 EXPOSE 8888 -# Set the entrypoint to run the application +#* Set the entrypoint to run the application ENTRYPOINT ["./immortal", "run", "./config.yml"]