build(docker): update Dockerfile to use Debian Bullseye and Rust 1.83.0.
-switch from Alpine to Debian for runtime -add wasm-bindgen-cli -update cargo-leptos version
This commit is contained in:
parent
947d244326
commit
f87f88db2d
1 changed files with 33 additions and 24 deletions
57
dockerfile
57
dockerfile
|
@ -1,47 +1,56 @@
|
||||||
# Build stage
|
# Build stage
|
||||||
FROM rust:1.82-alpine AS builder
|
FROM rust:1.83.0-slim-bullseye as builder
|
||||||
|
|
||||||
# Install essential build tools
|
# Install essential build tools
|
||||||
RUN apk add --no-cache \
|
RUN apt-get update && \
|
||||||
musl-dev \
|
apt-get install -y \
|
||||||
openssl-dev \
|
libsqlite3-dev \
|
||||||
openssl \
|
build-essential \
|
||||||
|
clang \
|
||||||
|
libssl-dev \
|
||||||
|
pkg-config \
|
||||||
curl \
|
curl \
|
||||||
build-base \
|
cmake \
|
||||||
g++ \
|
protobuf-compiler \
|
||||||
libc6-compat \
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
pkgconfig
|
|
||||||
|
|
||||||
# Install build dependencies
|
|
||||||
RUN apk add --no-cache musl-dev openssl-dev openssl
|
|
||||||
|
|
||||||
# Install Rust toolchain
|
# Install Rust toolchain
|
||||||
RUN rustup install stable
|
|
||||||
RUN rustup component add rust-src
|
RUN rustup component add rust-src
|
||||||
|
|
||||||
# Install cargo-leptos
|
# Install cargo-leptos & wasm-bindgen-cli
|
||||||
RUN cargo install cargo-leptos --version 0.2.29 --locked
|
RUN cargo install cargo-leptos --version 0.2.24 --locked
|
||||||
|
RUN cargo install wasm-bindgen-cli --version 0.2.99 --locked
|
||||||
|
|
||||||
|
# Build application
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
|
# Explicitly set WASM target
|
||||||
|
RUN rustup target add wasm32-unknown-unknown
|
||||||
# Build project
|
# Build project
|
||||||
ENV LEPTOS_OUTPUT_NAME="compareware"
|
ENV LEPTOS_OUTPUT_NAME="compareware"
|
||||||
|
|
||||||
|
# Build with release profile
|
||||||
RUN cargo leptos build --release
|
RUN cargo leptos build --release
|
||||||
|
|
||||||
# Runtime stage
|
# Runtime stage
|
||||||
FROM alpine:latest
|
FROM debian:bullseye-slim
|
||||||
|
|
||||||
# Install runtime dependencies
|
# Install runtime dependencies in Debian
|
||||||
RUN apk add --no-cache openssl
|
RUN apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
libssl-dev \
|
||||||
|
libsqlite3-0 \
|
||||||
|
ca-certificates \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
WORKDIR /app
|
# Copy build artifacts
|
||||||
COPY --from=builder /app/target/release/compareware /app/compareware
|
COPY --from=builder /app/target/release/compareware /app/
|
||||||
|
COPY --from=builder /app/target/site /app/site
|
||||||
COPY assets /app/assets
|
COPY assets /app/assets
|
||||||
|
|
||||||
# Expose port and set entrypoint
|
# Configure container, expose port and set entrypoint
|
||||||
|
WORKDIR /app
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
ENV LEPTOS_SITE_ADDR=0.0.0.0:3000
|
ENV LEPTOS_SITE_ADDR=0.0.0.0:3000
|
||||||
ENV LEPTOS_SITE_ROOT="site"
|
ENV LEPTOS_SITE_ROOT="site"
|
||||||
CMD ["/app/compareware"]
|
CMD ["./compareware"]
|
Loading…
Add table
Reference in a new issue