We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 304a347 commit da6ae2cCopy full SHA for da6ae2c
Dockerfile
@@ -8,11 +8,11 @@ RUN curl -sSL https://install.python-poetry.org | python3 -
8
9
# Ensure Poetry is available in PATH
10
ENV PATH="/root/.local/bin:$PATH"
11
+RUN poetry self add "poetry-plugin-export"
12
13
COPY pyproject.toml poetry.lock ./
14
-RUN poetry self add "poetry-plugin-export" &&
15
- poetry export -f requirements.txt --without-hashes -o requirements.txt &&
16
- pip install --no-cache-dir -r requirements.txt
+RUN poetry export -f requirements.txt --without-hashes -o requirements.txt
+RUN pip install --no-cache-dir -r requirements.txt
17
18
COPY . .
0 commit comments