From 7d6828333001c82acd2738b5a1563d13b6c788e0 Mon Sep 17 00:00:00 2001 From: Mercury Date: Mon, 2 Jun 2025 15:40:52 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f16951c..c7ab047 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ ENV PATH="/flutter/bin:${PATH}" RUN flutter channel stable && flutter upgrade && flutter config --enable-web # Copy Flutter project files -COPY frontend /app +COPY lightcloud_app /app # Build Flutter web app RUN flutter build web --release @@ -61,7 +61,7 @@ COPY --from=rust-builder /app/target/release/litecloud /app/litecloud COPY --from=flutter-builder /app/build/web /app/static # Expose the port the server listens on -EXPOSE 8080 +EXPOSE 8082 # Set environment variables ENV RUST_LOG=info