webservice_tutorial 1.0.3

Learn how to build a webservice in Rust!
FROM rust:1.67

WORKDIR /usr/src/webservice_tutorial
COPY . .

RUN cargo install --path .

CMD ["webservice_tutorial"]