Our Personal Data Server from scratch!
0

Configure Feed

Select the types of activity you want to include in your feed.

tranquil-pds / Dockerfile.dev
394 B 20 lines
1FROM rust:1.96-alpine 2 3RUN apk add --no-cache \ 4 ca-certificates \ 5 musl-dev \ 6 pkgconfig \ 7 openssl-dev \ 8 openssl-libs-static \ 9 mold \ 10 clang \ 11 protoc 12 13RUN cargo install cargo-watch 14 15ENV RUSTFLAGS="-C linker=clang -C link-arg=-fuse-ld=mold" 16ENV SQLX_OFFLINE=true 17 18WORKDIR /app 19 20CMD ["cargo", "watch", "-x", "run -p tranquil-server -- --config /app/config.dev.toml"]