me-site/Dockerfile

19 lines
303 B
Text
Raw Permalink Normal View History

2022-11-14 22:07:09 +01:00
FROM rust:buster as builder
2022-11-12 01:06:21 +01:00
2022-11-14 17:44:53 +01:00
COPY . /app
2022-11-12 00:44:36 +01:00
WORKDIR /app
2022-11-12 01:16:00 +01:00
RUN cargo build --release
2022-08-23 02:26:24 +02:00
2024-07-10 22:00:58 +02:00
FROM debian:buster
2022-11-14 17:44:53 +01:00
2024-07-10 22:00:58 +02:00
RUN apt update && apt upgrade -y
RUN apt install -y gnupg ca-certificates openssl
2022-11-14 17:44:53 +01:00
2022-11-22 19:48:16 +01:00
COPY --from=builder /app/target/release/me-site /me-site
2024-07-10 14:13:37 +02:00
COPY ./rocket.toml /rocket.toml
2022-11-14 17:44:53 +01:00
2023-01-06 23:06:08 +01:00
WORKDIR /
2022-11-14 17:44:53 +01:00
2022-11-22 19:48:16 +01:00
CMD ["/me-site"]