update python version and add build job
All checks were successful
Disk Report Image / build-and-push-ddns (push) Successful in 22s
All checks were successful
Disk Report Image / build-and-push-ddns (push) Successful in 22s
This commit is contained in:
14
disk_report.Containerfile
Normal file
14
disk_report.Containerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
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", "post_llama.py", "/input/input.txt"]
|
||||
Reference in New Issue
Block a user