12 lines
289 B
Text
12 lines
289 B
Text
FROM python:3.12-slim
|
|
|
|
COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
|
|
|
|
WORKDIR /app
|
|
COPY finder/pyproject.toml ./
|
|
RUN uv pip install --system -r pyproject.toml
|
|
|
|
COPY finder/*.py ./
|
|
COPY property-data/arcgis_data.parquet /data/arcgis_data.parquet
|
|
|
|
CMD ["python3", "main.py"]
|