mpesa 0.1.2

A wrapper around the M-PESA API in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM node:alpine

RUN apk add --no-cache rust cargo
RUN apk add --no-cache openssl-dev

WORKDIR /usr/src/myapp
COPY . .

RUN cargo install --path .

CMD ["mpesa"]