update dockerfile for local builds

This commit is contained in:
John Doe
2026-01-31 10:58:47 -05:00
parent e6a490bac5
commit a92f31d85e

View File

@@ -21,9 +21,9 @@ RUN pnpm install --frozen-lockfile --ignore-scripts
### BUILD TORRENTIAL ### BUILD TORRENTIAL
FROM rustlang/rust:nightly-alpine AS torrential-build FROM rustlang/rust:nightly-alpine AS torrential-build
RUN apk add musl-dev RUN apk add musl-dev git
WORKDIR /build WORKDIR /build
COPY torrential . RUN git clone https://github.com/Drop-OSS/torrential.git .
RUN cargo build --release RUN cargo build --release
### BUILD APP ### BUILD APP