This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
currency-exchange-rust/Dockerfile

10 lines
137 B
Docker

FROM rust:1.76.0
WORKDIR /usr/src/currency-exchange
COPY . .
RUN cargo build -r
ENTRYPOINT [ "./target/release/currency-exchange" ]