Move from pipenv -> uv, bump Python to 3.13
Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
10
Dockerfile
10
Dockerfile
@@ -1,9 +1,7 @@
|
||||
FROM "python:3.12-alpine"
|
||||
FROM "python:3.13"
|
||||
STOPSIGNAL SIGINT
|
||||
RUN mkdir /app
|
||||
WORKDIR /app
|
||||
RUN pip3 install pipenv
|
||||
RUN apk add build-base libffi-dev
|
||||
COPY ./Pipfile ./Pipfile.lock /app/
|
||||
RUN pipenv install
|
||||
CMD pipenv run python3 -m omnibot
|
||||
COPY ./pyproject.toml ./uv.lock .
|
||||
RUN pip3 install uv
|
||||
CMD uv run --no-group dev python3 -m omnibot
|
||||
|
||||
Reference in New Issue
Block a user