From 7904c80642affb311b64d0cd74c44a1ea04012c6 Mon Sep 17 00:00:00 2001 From: Nicholas Orlowsky Date: Sat, 20 Sep 2025 20:50:44 -0400 Subject: [PATCH] fix docker --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a5a1873..5dd9b26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,10 +19,9 @@ COPY --from=build /api/target/release/septastic_api /app/septastic_api COPY api/assets /app/assets COPY api/templates /app/templates +RUN apt update && apt install curl + ENV RUST_LOG=info ENV EXPOSE_PORT=8080 -RUN ls -lah -RUN pwd - ENTRYPOINT ["./septastic_api"]