11 lines
176 B
Docker
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"]
|