tangled
alpha
login
or
join now
zzstoatzz.io
/
solux
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
add dockerfile and prefect config
zzstoatzz.io
2 months ago
84fc4f7f
64504a6a
+4
-4
2 changed files
expand all
collapse all
unified
split
Dockerfile
prefect.yaml
+2
-4
Dockerfile
···
1
1
-
FROM python:3.13-slim
1
1
+
FROM ghcr.io/astral-sh/uv:python3.14-bookworm-slim
2
2
3
3
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
4
4
5
5
-
RUN pip install uv prefect
6
6
-
7
7
-
CMD ["prefect", "worker", "start", "--pool", "process-pool"]
5
5
+
ENTRYPOINT ["uv", "run", "--with", "prefect", "prefect", "worker", "start", "--pool", "process-pool"]
+2
prefect.yaml
···
5
5
entrypoint: src/solux/flow.py:solux_update
6
6
work_pool:
7
7
name: process-pool
8
8
+
job_variables:
9
9
+
command: "uv run --with git+https://tangled.org/zzstoatzz.io/solux@main -m prefect.engine"
8
10
schedules:
9
11
- interval: 900
10
12
pull: