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 a73d6fa commit ef8d0c0Copy full SHA for ef8d0c0
Container/Dockerfile
@@ -11,5 +11,7 @@ WORKDIR /app
11
12
COPY pyproject.toml .
13
14
-RUN pip install --upgrade pip setuptools wheel
15
-RUN pip install .
+RUN pip install --upgrade pip setuptools wheel && \
+ pip install toml-to-requirements && \
16
+ toml-to-req --toml-file pyproject.toml && \
17
+ pip install -r requirements.txt
0 commit comments