1
0
Fork 0
mirror of https://codeberg.org/Reuh/feather.git synced 2026-02-15 16:05:29 +00:00
feather/Dockerfile

10 lines
155 B
Text
Raw Normal View History

FROM ghcr.io/astral-sh/uv:alpine3.22
2025-10-09 17:06:09 +02:00
ENV PYTHONUNBUFFERED=1
2025-10-09 17:06:09 +02:00
COPY . /feather
2025-10-09 17:06:09 +02:00
WORKDIR /feather
RUN uv sync --locked
2025-10-09 17:06:09 +02:00
ENTRYPOINT [ "uv", "run", "feather" ]