adding guids to the rss feed

This commit is contained in:
h
2026-07-15 10:14:12 -04:00
parent 87b9958d28
commit e54085cdcf
6 changed files with 706 additions and 426 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
FROM rust:1.73-buster as builder
FROM rust:1.97-bookworm as builder
WORKDIR /build
@@ -8,7 +8,7 @@ COPY ./Cargo.toml /build/Cargo.toml
RUN rustup update nightly && rustup default nightly && \
cargo clean && cargo build --release
FROM debian:buster
FROM debian:bookworm
WORKDIR /app
@@ -18,8 +18,8 @@ RUN apt-get update && apt-get install libssl-dev -y
RUN mkdir /store
RUN touch /store/store.xmlfrag && touch /store/tmpfile.xmlfrag
RUN touch /store/store.xmlfrag && touch /store/tmpfile.xmlfrag && touch /store/guid && echo "1" > /store/guid
COPY ./templates/ /app/templates
CMD [ "/app/linky", "/store/store.xmlfrag", "/store/tmpfile.xmlfrag" ]
CMD [ "/app/linky", "/store/store.xmlfrag", "/store/tmpfile.xmlfrag", "/store/guid" ]