diff --git a/Dockerfile b/Dockerfile index 0a84349..70a08b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,12 +3,8 @@ FROM rust # Setup directories -RUN mkdir /src /build -WORKDIR /src - -# Copy project into Docker image -COPY Cargo.toml . -COPY src/ ./src +RUN mkdir /src /build /comp +WORKDIR /comp ## Run -CMD cargo build && cp ./target/debug/RustyPass /build/ \ No newline at end of file +CMD cp -r /src/* ./ && cargo build && cp ./target/debug/RustyPass /build/ \ No newline at end of file diff --git a/src/cli.rs b/src/cli.rs deleted file mode 100644 index 17cc120..0000000 --- a/src/cli.rs +++ /dev/null @@ -1,7 +0,0 @@ -// Libraries - -// Structs -pub struct UI{ - -} -