https://github.com/firefly-cpp/nia-container
https://github.com/firefly-cpp/nia-container
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/firefly-cpp/nia-container
- Owner: firefly-cpp
- Created: 2023-01-10T10:04:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T12:51:00.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T09:13:51.401Z (12 months ago)
- Language: Dockerfile
- Size: 606 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
# nia-container
A container hosts all packages from the Nia{Py, AML, Class, ARM} collection.
## Build & run
### Docker
The image can be built using the following command:
```sh
$ docker build --tag nia .
```
Run the image using
#### Linux $PWD
```sh
docker run -it --name nia -v "$PWD:/var/nia" nia
```
#### Windows {$PWD}
Run the image using Powershell and {$PWD} due to $PWD not being avaliable in command prompt on Windows.
```sh
docker run -it --name nia -v "{$PWD}:/var/nia" nia
```
### Podman
The image can be built using the following command:
Run the image using
#### Linux $PWD
```sh
$ podman build --tag nia .
```
#### Windows ($PWD)
Run the image using Powershell and {$PWD} due to $PWD not being avaliable in command prompt on Windows.
```sh
podman run -it --name nia -v "{$PWD}:/var/nia" nia
```
## Disclaimer
This software is provided as-is, and there are no guarantees that it fits your purposes or that it is bug-free. Use it at your own risk!