webservice_tutorial 1.0.3

Learn how to build a webservice in Rust!
1
2
3
4
5
6
7
8
FROM rust:1.67

WORKDIR /usr/src/webservice_tutorial
COPY . .

RUN cargo install --path .

CMD ["webservice_tutorial"]