Open
Description
If I understand correctly from the readme, after running
docker run --rm \
-v ${PWD}:/code \
-v ${HOME}/.cargo/registry:/root/.cargo/registry \
-v ${HOME}/.cargo/git:/root/.cargo/git \
softprops/lambda-rust
my code should build and a zip file should be generated inside the target/lambda/release/
directory. The command runs without error and builds my code, yet there is no zip:
PS C:\Users\seekr\Desktop\my-new-app> ls .\target\lambda\release\
Directory: C:\Users\seekr\Desktop\my-new-app\target\lambda\release
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 1/8/2019 2:46 PM .fingerprint
d----- 1/8/2019 2:46 PM build
d----- 1/8/2019 2:49 PM deps
d----- 1/8/2019 2:46 PM examples
d----- 1/8/2019 2:46 PM incremental
d----- 1/8/2019 2:46 PM native
-a---- 1/8/2019 2:46 PM 0 .cargo-lock
-a---- 1/8/2019 2:49 PM 7034726 hello
-a---- 1/8/2019 2:49 PM 53 hello.d
I'm running these commands inside the serverless-aws-rust template project.
OS: Windows 10 x64