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"]