We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b32a46 commit e7e7abeCopy full SHA for e7e7abe
1 file changed
Dockerfile
@@ -1,14 +1,13 @@
1
# Dockerfile
2
3
+
4
FROM python:3.11-slim as builder
5
6
RUN pip install poetry
-
7
WORKDIR /app
8
9
COPY pyproject.toml poetry.lock ./
10
11
-RUN poetry install --no-dev --no-interaction --no-ansi
+RUN poetry install --without dev --no-interaction --no-ansi
12
13
FROM python:3.11-slim
14
@@ -23,6 +22,5 @@ COPY src/ /app/src/
23
22
RUN poetry config virtualenvs.in-project false --local \
24
&& poetry config virtualenvs.path /root/.cache/pypoetry/virtualenvs
25
26
27
ENTRYPOINT ["poetry", "run", "code-review-agent"]
28
CMD ["--help"]
0 commit comments