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

12 lines
189 B
Docker
Raw Normal View History

2024-03-15 15:49:23 +01:00
FROM rust:1.76.0
2024-03-20 12:55:10 +01:00
ENV CURRENCY_CACHE="/tmp/docker_currency_cache.db"
2024-03-15 15:49:23 +01:00
WORKDIR /usr/src/currency-exchange
COPY . .
RUN cargo build -r
ENTRYPOINT [ "./target/release/currency-exchange" ]