solverforge-fsr / Dockerfile
github-actions[bot]
chore: sync uc-fsr Space
2574e86
Raw
History Blame Contribute Delete
925 Bytes
# Multi-stage build for solverforge-fsr.
#
# The app is intended to build from registry dependency declarations, so the
# repository root is the complete Docker build context:
# docker build -f Dockerfile -t solverforge-fsr .
FROM rust:1.95-alpine AS builder
RUN apk add --no-cache musl-dev
WORKDIR /build
COPY Cargo.toml Cargo.lock ./
COPY src/ ./src/
COPY static/ ./static/
COPY solver.toml ./solver.toml
COPY solverforge.app.toml ./solverforge.app.toml
RUN cargo build --release --target x86_64-unknown-linux-musl
FROM alpine:latest
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/solverforge_fsr ./solverforge_fsr
COPY --from=builder /build/static/ ./static/
COPY --from=builder /build/solver.toml ./solver.toml
COPY --from=builder /build/solverforge.app.toml ./solverforge.app.toml
ENV PORT=7860
EXPOSE 7860
CMD ["./solverforge_fsr"]