me-site/Dockerfile

12 lines
176 B
Text
Raw Normal View History

2022-11-12 01:06:21 +01:00
FROM rust:latest AS builder
2022-11-12 00:44:36 +01:00
WORKDIR /app
2022-11-12 01:06:21 +01:00
COPY ./ .
RUN cargo build --target x86_64-unknown-linux-musl --release
2022-08-23 02:26:24 +02:00
2022-11-12 01:11:07 +01:00
COPY /app/target/release/me-site /me-site
2022-09-09 16:40:44 +02:00
2022-11-12 01:06:21 +01:00
CMD ["/me-site"]