2024-12-05 11:44:54 +00:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
|
|
|
|
## Setting up the environment
|
|
|
|
|
|
|
|
1. Create a virtual environment:
|
|
|
|
```bash
|
|
|
|
python3 -m venv .venv
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Activate the virtual environment:
|
|
|
|
```bash
|
|
|
|
. .venv/bin/activate
|
|
|
|
```
|
|
|
|
|
|
|
|
3. Install dependencies:
|
|
|
|
```bash
|
|
|
|
pip install requirements.txt
|
|
|
|
```
|
|
|
|
|
2025-01-21 11:30:02 +00:00
|
|
|
## Building the container
|
|
|
|
|
|
|
|
```
|
|
|
|
# <runtime> build -t adrianux:<tag> .
|
2024-12-05 11:44:54 +00:00
|
|
|
```
|
|
|
|
|
2025-01-21 11:30:02 +00:00
|
|
|
|
|
|
|
## Running the container
|
|
|
|
|
|
|
|
```
|
|
|
|
# <runtime> run adrianux:<tag>
|
|
|
|
```
|