This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
RustyPass/Dockerfile

10 lines
198 B
Text
Raw Permalink Normal View History

2024-06-19 15:02:12 -05:00
## Setup
# Use the Rust container as a base
2024-06-19 14:33:46 -05:00
FROM rust
2024-06-19 15:02:12 -05:00
# Setup directories
2024-06-19 18:03:38 -05:00
RUN mkdir /src /build /comp
WORKDIR /comp
2024-06-19 14:33:46 -05:00
2024-06-19 15:02:12 -05:00
## Run
2024-06-19 18:03:38 -05:00
CMD cp -r /src/* ./ && cargo build && cp ./target/debug/RustyPass /build/