me-site/Dockerfile

18 lines
218 B
Text
Raw Normal View History

2022-11-14 17:44:53 +01:00
FROM rust 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
2022-11-14 17:44:53 +01:00
FROM ubuntu
RUN apt-get update
RUN apt-get install -y gnupg
COPY --from=builder /app /app
WORKDIR /app
2022-11-12 01:19:38 +01:00
CMD ["/app/target/release/me-site"]