Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.11-alpine AS builder

RUN apk add poetry
RUN apk add uv

COPY . /build
WORKDIR /build

RUN poetry build --format wheel
RUN uv sync

FROM python:3.11-alpine

Expand Down
Loading