adding guids to the rss feed
This commit is contained in:
+4
-4
@@ -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" ]
|
||||
|
||||
Reference in New Issue
Block a user