me-site/Dockerfile
2022-11-12 01:11:07 +01:00

11 lines
176 B
Docker

FROM rust:latest AS builder
WORKDIR /app
COPY ./ .
RUN cargo build --target x86_64-unknown-linux-musl --release
COPY /app/target/release/me-site /me-site
CMD ["/me-site"]