20 lines
573 B
Text
20 lines
573 B
Text
|
|
FROM rust:1.87-alpine AS builder
|
||
|
|
RUN apk add --no-cache musl-dev pkgconfig openssl-dev
|
||
|
|
WORKDIR /app
|
||
|
|
COPY Cargo.toml Cargo.lock* ./
|
||
|
|
COPY src ./src
|
||
|
|
COPY migrations ./migrations
|
||
|
|
COPY seeds ./seeds
|
||
|
|
RUN cargo build --release
|
||
|
|
|
||
|
|
FROM alpine:3.20
|
||
|
|
RUN apk add --no-cache ca-certificates
|
||
|
|
WORKDIR /app
|
||
|
|
COPY --from=builder /app/target/release/nxtgauge-ai-assistant /usr/local/bin/nxtgauge-ai-assistant
|
||
|
|
COPY --from=builder /app/migrations ./migrations
|
||
|
|
COPY --from=builder /app/seeds ./seeds
|
||
|
|
ENV APP_HOST=0.0.0.0
|
||
|
|
ENV APP_PORT=8080
|
||
|
|
EXPOSE 8080
|
||
|
|
CMD ["/usr/local/bin/nxtgauge-ai-assistant"]
|