FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rust-lambda-container-example/cargo at develop · horatos/rust-lambda-container-example · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
horatos
/
rust-lambda-container-example
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
rust-lambda-container-example
/
cargo
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
15 lines (11 loc) · 393 Bytes
Breadcrumbs
rust-lambda-container-example
/
cargo
Copy path
File metadata and controls
executable file
·
15 lines (11 loc) · 393 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!
/bin/bash
#
Script to run cargo inside development container
#
#
It assumes that Cargo.toml exists in the same directory.
#
.cargo/registry is mounted so as to persist downloaded packages.
IMAGE=rust-lambda-container-example:develop
docker run -it --rm --entrypoint cargo \
-v
$(
pwd
)
:/home/app/src \
-v
$(
pwd
)
/.cargo/registry:/home/app/.cargo/registry \
-w /home/app/src \
$IMAGE
$@
Back
|
FazBrowse Home
|
New Git URL