Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pages/guide/07-full-stack-deployments.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,10 @@ RUN cd /build/server && gleam deps download

# Compile the client code and output to server's static directory
RUN cd /build/client \
# Add this line if your project doesn't already have a dev dependency
# on `lustre_dev_tools` - otherwise, you can omit it
&& gleam add --dev lustre_dev_tools \
&& gleam run -m lustre/dev build app --minify --outdir=/build/server/priv/static
&& gleam run -m lustre/dev build --minify --outdir=../server/priv/static

# Compile the server code
RUN cd /build/server \
Expand Down