Files
llm_server_monitor/disk_report.Containerfile
ducoterra 004ccf2fb7
All checks were successful
Disk Report Image / build-and-push-ddns (push) Successful in 20s
fix typo
2026-01-22 09:58:30 -05:00

14 lines
341 B
Docker

FROM ghcr.io/astral-sh/uv:alpine3.22
# Copy the project into the image
COPY . /app
COPY example.txt /input/input.txt
# Disable development dependencies
ENV UV_NO_DEV=1
# Sync the project into a new environment, asserting the lockfile is up to date
WORKDIR /app
RUN uv sync --locked
CMD ["uv", "run", "disk_report.py", "/input/input.txt"]