✖️ replace pgp crate
This commit is contained in:
parent
31c20fff10
commit
4ddadfdce9
6 changed files with 30 additions and 704 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,17 +1,17 @@
|
|||
FROM rust as builder
|
||||
FROM rust:buster as builder
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
RUN cargo build --release
|
||||
|
||||
FROM ubuntu
|
||||
FROM debian
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y gnupg
|
||||
RUN apt-get install -y gnupg ca-certificates
|
||||
|
||||
COPY --from=builder /app /app
|
||||
COPY --from=builder /app/target/release/me-site /app/me-site
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
CMD ["/app/target/release/me-site"]
|
||||
CMD ["/app/me-site"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue