diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..154d2f4 --- /dev/null +++ b/Containerfile @@ -0,0 +1,23 @@ +# Build backend +FROM rust:1.82-alpine3.20 as build_backend + +RUN apk add musl-dev + +WORKDIR / + +COPY Cargo.* ./ + +COPY migration migration/ + +COPY src src/ + +RUN cargo build --release + +# End container +FROM alpine:3.20 + +WORKDIR / + +COPY --from=build_backend target/release/mailauth . + +ENTRYPOINT ["./mailauth"]