Skip to content

Commit

Permalink
Merge pull request #17 from ninech/dockerfile-rust
Browse files Browse the repository at this point in the history
feat: add Dockefile rust example
  • Loading branch information
ctrox authored Jul 23, 2024
2 parents 4abd93c + 54b6c1f commit d88f78f
Show file tree
Hide file tree
Showing 8 changed files with 1,640 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,17 @@ For static sites we have two examples:
--git-url=https://github.com/ninech/deploio-examples \
--git-sub-path=static/react
```

## Dockerfile

With Dockerfile builds, deplo.io can build any app that can be built using a
Dockerfile. To demonstrate this we have the following sample apps:

* a very basic Rust app:

```bash
nctl create application dockerfile-rust \
--git-url=https://github.com/ninech/deploio-examples \
--git-sub-path=dockerfile/rust \
--dockerfile
```
1 change: 1 addition & 0 deletions dockerfile/rust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
Loading

0 comments on commit d88f78f

Please sign in to comment.