We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f03698d commit 3588ce8Copy full SHA for 3588ce8
1 file changed
Dockerfile
@@ -11,10 +11,9 @@ WORKDIR /app
11
COPY pyproject.toml poetry.lock* ./
12
COPY src/ ./src/
13
14
-# Export dependencies and install them, then install the project
+# Export dependencies and install them
15
RUN poetry export -f requirements.txt --output requirements.txt --without-hashes && \
16
- pip install --no-cache-dir --prefix="/install" -r requirements.txt && \
17
- poetry install --no-dev
+ pip install --no-cache-dir --prefix="/install" -r requirements.txt
18
19
20
# Stage 2: Runtime
0 commit comments