forked from scsibug/nostr-rs-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,57 @@ | ||
FROM docker.io/library/rust:1-bookworm as builder | ||
RUN apt-get update \ | ||
&& apt-get install -y cmake protobuf-compiler \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
RUN USER=root cargo install cargo-auditable | ||
RUN USER=root cargo new --bin nostr-rs-relay | ||
WORKDIR ./nostr-rs-relay | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y cmake protobuf-compiler && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
RUN cargo install cargo-auditable | ||
|
||
RUN cargo new --bin nostr-rs-relay | ||
WORKDIR /nostr-rs-relay | ||
|
||
COPY ./Cargo.toml ./Cargo.toml | ||
COPY ./Cargo.lock ./Cargo.lock | ||
# build dependencies only (caching) | ||
RUN cargo auditable build --release --locked | ||
# get rid of starter project code | ||
|
||
RUN rm src/*.rs | ||
|
||
# copy project source code | ||
COPY ./src ./src | ||
COPY ./proto ./proto | ||
COPY ./build.rs ./build.rs | ||
COPY config.toml /usr/src/app/config.toml | ||
|
||
# build auditable release using locked deps | ||
RUN rm ./target/release/deps/nostr*relay* | ||
RUN cargo auditable build --release --locked | ||
|
||
FROM docker.io/library/debian:bookworm-slim | ||
|
||
ARG APP=/usr/src/app | ||
ARG APP_DATA=/usr/src/app/db | ||
RUN apt-get update \ | ||
&& apt-get install -y ca-certificates tzdata sqlite3 libc6 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y ca-certificates tzdata sqlite3 libc6 && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
EXPOSE 7777 | ||
|
||
ENV TZ=Etc/UTC \ | ||
APP_USER=appuser | ||
APP_USER=appuser \ | ||
RUST_LOG=info,nostr_rs_relay=info \ | ||
APP_DATA=${APP_DATA} | ||
|
||
RUN groupadd $APP_USER \ | ||
&& useradd -g $APP_USER $APP_USER \ | ||
&& mkdir -p ${APP} \ | ||
&& mkdir -p ${APP_DATA} | ||
RUN groupadd $APP_USER && \ | ||
useradd -g $APP_USER $APP_USER && \ | ||
mkdir -p ${APP} && \ | ||
mkdir -p ${APP_DATA} && \ | ||
chown -R $APP_USER:$APP_USER ${APP} | ||
|
||
COPY --from=builder /nostr-rs-relay/target/release/nostr-rs-relay ${APP}/nostr-rs-relay | ||
COPY --from=builder /usr/src/app/config.toml ${APP}/config.toml | ||
|
||
RUN chown -R $APP_USER:$APP_USER ${APP} | ||
RUN chown $APP_USER:$APP_USER ${APP}/config.toml | ||
|
||
USER $APP_USER | ||
WORKDIR ${APP} | ||
|
||
ENV RUST_LOG=info,nostr_rs_relay=info | ||
ENV APP_DATA=${APP_DATA} | ||
|
||
CMD ./nostr-rs-relay --db ${APP_DATA} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters