aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 8fc73225fea1f55d26eab98df3c46a2c39b74bbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:1.58 as builder

WORKDIR /usr/src/rss-watcher
COPY . .

RUN cargo install --path .

FROM debian:buster-slim
COPY --from=builder /usr/local/cargo/bin/rss-watcher /usr/local/bin/rss-watcher
ENV RUST_LOG=info

CMD ["rss-watcher"]