nixpacks 0.2.5

Generate an OCI compliant image based off app source
Documentation
1
2
3
4
5
6
7
8
9
10
import numpy as np
import pandas as pd

print(np)
print(pd)

arr = np.random.rand(2, 3)
print(arr)

print("Hello from Python numpy and pandas")