2 years ago
At the moment I have a nixpacks.toml and a Procfile
nixpacks.toml content
[phases.setup]
nixPkgs = ["…","ffmpeg"]
Procfile content
web: gunicorn main:app
I need to run Python 3.10.11
9 Replies
2 years ago
build logs please -
Why not? Build logs typically shouldn't have any secrets exposed.
But I read this as "I don't have a build process yet". Is that correct?
2 years ago
okay, share only the nixpacks build table
╔══════════════════════════════ Nixpacks v1.24.0 ══════════════════════════════╗
║ setup │ python310, gcc, ffmpeg ║
║──────────────────────────────────────────────────────────────────────────────║
║ install │ python -m venv --copies /opt/venv && . /opt/venv/bin/activate ║
║ │ && pip install -r requirements.txt ║
║──────────────────────────────────────────────────────────────────────────────║
║ start │ gunicorn main:app
This?