We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bace6b7 commit 4035bc9Copy full SHA for 4035bc9
Dockerfile
@@ -18,11 +18,12 @@ RUN cargo binstall dioxus-cli --root /.cargo -y --force
18
ENV PATH="/.cargo/bin:$PATH"
19
20
# Create the final bundle folder. Bundle always executes in release mode with optimizations enabled
21
-RUN dx bundle -p weaver-server
+RUN cd crates/weaver-server && dx bundle --release
22
23
FROM chef AS runtime
24
25
-COPY --from=builder /app/target/dx/weaver_server/release/web/ /usr/local/app
+
26
+COPY --from=builder /app/target/dx/weaver-server/release/web/ /usr/local/app
27
28
# set our port and make sure to listen for all connections
29
ENV PORT=8080
0 commit comments