You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
523 B
Markdown
32 lines
523 B
Markdown
# learn_pyoxidizer
|
|
|
|
# Learning PyOxidizer
|
|
|
|
Repository to learn PyOxidizer
|
|
|
|
Example:
|
|
|
|
```
|
|
https://github.com/takov751/Pyoxidizer_example
|
|
```
|
|
|
|
## Build
|
|
|
|
A two stage build is implemented in Docker.
|
|
|
|
### Build container
|
|
|
|
Run from repo root.
|
|
|
|
```
|
|
docker build -t pyoxidizer-build:0.22.0 --file ./dockerfiles/Dockerfile.pyoxidizer .
|
|
```
|
|
|
|
This creates our PyOxidizer build environment.
|
|
|
|
### Building the app
|
|
|
|
```
|
|
docker build -t oxidized_app:0.1.0 --file ./dockerfiles/Dockerfile.oxidized_app .
|
|
```
|