Skip to content

Commit 9324411

Browse files
fix docker tests
1 parent 9840485 commit 9324411

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Dockerfile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
FROM python:3.11
2-
RUN apt-get -y update
3-
RUN apt-get -y install curl jq
1+
FROM ghcr.io/astral-sh/uv:python3.11-trixie
2+
RUN apt-get -y update && apt-get -y install curl jq
43
COPY . /app
54
WORKDIR /app
6-
# install bbot_server in editable mode
7-
RUN pip install -e .
5+
RUN uv sync --frozen
86
EXPOSE 8807
9-
CMD ["bbctl", "server", "start", "--api-only"]
7+
CMD ["uv", "run", "bbctl", "server", "start", "--api-only"]

0 commit comments

Comments
 (0)