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
Raw Normal View History

2024-03-15 15:49:23 +01:00
FROM rust:1.76.0
WORKDIR /usr/src/currency-exchange
COPY . .
RUN cargo build -r
ENTRYPOINT [ "./target/release/currency-exchange" ]