Skip to content

Commit

Permalink
feat: add Dockefile rust example
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrox committed Jul 22, 2024
1 parent 4abd93c commit 54b6c1f
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 54b6c1f

Please sign in to comment.