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

13 lines
225 B
Docker

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